8000 Issues/issue 16 by WillStrohl · Pull Request #23 · HotcakesCommerce/hotcakes-commerce-core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Issues/issue 16 #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 26, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,6 @@ _[Ii]nstall
**/[Bb]in/[Dd]ebug
**/[Bb]in/[Rr]elease
**/[Ff]akes[Aa]ssemblies/[Hh]otcakes*
[Ww]ebsite/[Bb]in
[Ww]ebsite/[Bb]in/[Hh]otcakes.*
[Ww]ebsite/[Dd]esktop[Mm]odules/[Hh]otcakes/[Bb]in
**/[Ff]akes[Aa]ssemblies

############
Expand All @@ -102,9 +99,19 @@ Thumbs.db

# Folder config file
Desktop.ini

[Ww]ebsite/[Aa]pp_[Cc]ode
[Ww]ebsite/ 10000 [Aa]pp_[Dd]ata
![Ww]ebsite/[Aa]pp_[Dd]ata/[Pp]lace[Hh]older.txt
[Ww]ebsite/[Bb]in
[Ww]ebsite/[Bb]in/[Hh]otcakes.*
[Ww]ebsite/[Dd]esktop[Mm]odules/[Hh]otcakes/[Bb]in
[Ww]bsite/[Ii]nstall/[Tt]emp/
[Ww]ebsite/[Ii]nstall/upgradestat.log.resources.txt
[Ww]ebsite/[Pp]roviders/[Hh]tml[Ee]ditor[Pp]roviders/
[Ww]ebsite/[Pp]ortals/**/[Cc]ache
[Ww]ebsite/[Pp]ortals/_default/CK*.xml
[Ww]ebsite/[Pp]ortals/_default/[Ii]nstall/CK*.xml
[Ww]ebsite/[Pp]ortals/_default/[Ll]ogs
[Ww]ebsite/[Pp]ortals/_default/[Ss]kins/[Xx]cillion/
[Ww]ebsite/[Pp]ortals/_default/[Cc]ontainers/[Xx]cillion/
4 changes: 2 additions & 2 deletions Libraries/Hotcakes.Commerce/WebAppSettings.System.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static Version AppVersion

public static string SKU
{
get { return "PRO"; }
get { return string.Empty; }
}

public static string FriendlyAppVersion
Expand All @@ -56,7 +56,7 @@ public static string FriendlyAppVersion

public static string FriendlySKU
{
get { return "Pro"; }
get { return string.Empty; }
}

public static string CookieNameCartIdPaymentPending(long storeId)
Expand Down
5 changes: 3 additions & 2 deletions Website/web.config
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</configSections>
<connectionStrings>
<!-- Connection String for SQL Server 2008/2012 Express -->
<add name="SiteSqlServer" connectionString="Data Source=localhost\mssqlserver2014;Initial Catalog=Hotcakes_Dev;User ID=dnn;Password=dnn" providerName="System.Data.SqlClient" />
<add name="SiteSqlServer" connectionString="Data Source=.\MSSQL2016;Initial Catalog=HotcakesDev;User ID=uvuser;Password=uvpwd" providerName="System.Data.SqlClient" />
<!-- Connection String for SQL Server 2008/2012
<add name="SiteSqlServer" connectionString="Server=(local);Database=DotNetNuke;uid=;pwd=;" providerName="System.Data.SqlClient" />
-->
Expand Down Expand Up @@ -87,12 +87,13 @@
<add name="Personalization" type="DotNetNuke.HttpModules.Personalization.PersonalizationModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="Analytics" type="DotNetNuke.HttpModules.Analytics.AnalyticsModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<remove name="UrlRoutingModule-4.0" />
<add name="UrlRout 5F39 ingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="managedHandler" />
<!--add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="managedHandler" /-->
<add name="ClientDependencyModule" type="ClientDependency.Core.Module.ClientDependencyModule, ClientDependency.Core" preCondition="managedHandler" />
<add name="Services" type="DotNetNuke.HttpModules.Services.ServicesModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="OutputCaching" type="DotNetNuke.HttpModules.OutputCaching.OutputCacheModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="Compression" type="DotNetNuke.HttpModules.Compression.CompressionModule, DotNetNuke.HttpModules" preCondition="managedHandler" />
<add name="MVCModules" type="DotNetNuke.Web.Mvc.MvcHttpModule, DotNetNuke.Web.Mvc" preCondition="managedHandler" />
<add name="UrlRoutingModule-4.0" type="Hotcakes.Commerce.Dnn.Providers.HccUrlRoutingModule, Hotcakes.Commerce.Dnn" preCondition="managedHandler,runtimeVersionv4.0" />
<add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" preCondition="managedHandler" />
<add name="Detector" type="FiftyOne.Foundation.Mobile.Detection.DetectorModule, FiftyOne.Foundation" preCondition="managedHandler" />
</modules>
Expand Down
0