Search found 104 matches

by mikek
Wed Dec 05, 2012 11:48 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Site crashing
Replies: 3
Views: 4021

Re: Site crashing

Fiew additional things that will increase site performance and help fixing the issue - set a database maintenance plan on the DB server - disable page tracking : Administration > Configure > Page Tracking - set low value for Anonymous User Maintenance : Administration > Configure > Maintenance (for ...
by mikek
Tue Nov 20, 2012 10:12 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Help! Yellow Screen of Death
Replies: 1
Views: 2542

Re: Help! Yellow Screen of Death

Hi Moustafa, The exception log show that site application pool is being configured under ASP.NET Version:2.0.50727.3618. If you are running 7.0.7 or the latest Gold release make sure that site application pool is set to ASP.NET 4.0 Integrated mode. Asp.Net http modules configuration in 4.0 is differ...
by mikek
Wed Nov 14, 2012 1:18 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: 7.7 Errors in Error Log
Replies: 1
Views: 2486

Re: 7.7 Errors in Error Log

This is a generic UnhandledException message. Contact your hosting provider and request the full exception log for all exceptions in the server application log.
Go to the exception details and look at the exception stack for the actual reason causing the exception.
by mikek
Tue Oct 30, 2012 4:14 pm
Forum: AbleCommerce GOLD
Topic: Product image directory for a 2 server web farm
Replies: 2
Views: 4125

Re: Product image directory for a 2 server web farm

In order to share product images between two or more servers you have to setup a shared storage trough iSCSI or other SAN storage. You can also have only the Assets folder shared by using hard folder links (MKLINK windows command) on both servers pointing to the same shared folder.
by mikek
Thu Oct 18, 2012 2:15 pm
Forum: 7.0 DataPort
Topic: 7.7.251 on Local Host-Cannot connect to URL
Replies: 13
Views: 23011

Re: 7.7.251 on Local Host-Cannot connect to URL

This is OK, extending database nvarchar from 100 to 255 is safe. Just press OK to continue. The operation will make changes to the database schema which will not affect your site functionality.
by mikek
Thu Oct 18, 2012 1:15 pm
Forum: 7.0 DataPort
Topic: 7.7.251 on Local Host-Cannot connect to URL
Replies: 13
Views: 23011

Re: 7.7.251 on Local Host-Cannot connect to URL

It seems that the user account assigned to site application pool does not have List Folder Contents and Read permissions on the %windir%\Temp folder. In IIS go to application pool settings and see what is the windows user account assigned to this applicaiton pool. From windows explorer navigate to c...
by mikek
Thu Oct 18, 2012 12:47 pm
Forum: 7.0 DataPort
Topic: 7.7.251 on Local Host-Cannot connect to URL
Replies: 13
Views: 23011

Re: 7.7.251 on Local Host-Cannot connect to URL

Enable custom error reporting customErrors mode="Off" in web config to get the exception error and see what is causing the issue.
by mikek
Wed Oct 17, 2012 11:19 am
Forum: 7.0 DataPort
Topic: 7.7.251 on Local Host-Cannot connect to URL
Replies: 13
Views: 23011

Re: 7.7.251 on Local Host-Cannot connect to URL

AbleCommerce Dataport utility uses clientapi/ClientApiService.ashx to communicate with the database. Make sure clientapi/ClientApiService.ashx page exist and is accessible trough: http://newton/clientapi/ClientApiService.ashx If the page is not accessible or generates exceptions then dataport will n...
by mikek
Fri Jul 06, 2012 11:29 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Reset password link redirecting to home page
Replies: 3
Views: 3638

Re: Reset password link redirecting to home page

The implementation is in : ConLib\PasswordHelpPage.ascx.cs

if ((_User == null) || (!_User.IsApproved)) Response.Redirect(NavigationHelper.GetHomeUrl());
by mikek
Fri Jul 06, 2012 12:19 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Reset password link redirecting to home page
Replies: 3
Views: 3638

Re: Reset password link redirecting to home page

Hello, It seems that the user account related to this password reset has been disabled or locked out. PasswordHelp checks if the account is active and redirects to site home url in case the user account is not active. If the password reset is for a regular user account you can login and enable the u...
by mikek
Thu Jul 05, 2012 11:41 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Sudden DLL Error
Replies: 2
Views: 13064

Re: Sudden DLL Error

Based on the exception error code (Exception from HRESULT: 0x80131418) the issue seems like a folder permission issue. If you are running your site in a shared hosting environment submit a support ticket with your hosting provider. The exception (Exception from HRESULT: 0x80131418) is ASP.NET specif...
by mikek
Tue Oct 04, 2011 10:27 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Is it possible to host cart and admin on different servers
Replies: 2
Views: 2824

Re: Is it possible to host cart and admin on different servers

It is doable if you have server disks on a shared storage (SAN or iSCSI) attached to both servers and two separate AbleCommerce licenses for the same domain. Such configuration however will be difficult to maintain and upgrade and adds additional complexity that may cause site downtimes. If you just...
by mikek
Tue Aug 16, 2011 1:29 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Application error occur if "/" followed behind default.aspx
Replies: 8
Views: 6297

Re: Application error occur if "/" followed behind default.aspx

Hello, This can be fixed with simple URL Rewrite Rule. Add the following IIS URL Rewrite rule in your web config file rewrite rules section. <rule name="SEO Remove Trailing Slash" stopProcessing="true"> <match url="(.*)/$"/> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate...
by mikek
Mon Aug 15, 2011 1:00 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Email Errors - AC not sending ANY emails
Replies: 16
Views: 17413

Re: Email Errors - AC not sending ANY emails

What this error means is that System.net.mail was unable to find the smtp server. To resolve the issue, check that the SMTP Server Host in AbleCommerce control panel settings resolves to the correct smtp server IP. You can also try to replace the smtp host name with the actual smtp server IP and see...
by mikek
Sun Jul 31, 2011 5:52 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Notification of ERRORS
Replies: 4
Views: 4730

Re: Notification of ERRORS

We use ELMAH for our clients hosted with us and it works great. You can set up email notifications, web page or RSS error feed. http://code.google.com/p/elmah/ The ELMAH install requires only elmah.dll copy in your Ablecommerce /bin folder and few lines of web.config code. You can switch on/off erro...
by mikek
Tue Jul 26, 2011 1:47 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: What Merchant account services are you using?
Replies: 5
Views: 4411

Re: What Merchant account services are you using?

We switched our Merchant account from http://www.unitedbankcard.com/ to http://www.heartlandpaymentsystems.com/ (NYSE - HPY) a couple of months ago. Both merchant providers offer Authorize.Net, so switching from one provider to another required only changing Authorize.Net credentials. Heartlandpayme...
by mikek
Wed Jul 13, 2011 4:11 am
Forum: Feature Requests
Topic: Upcoming changes in Google feed requirements
Replies: 10
Views: 10563

Re: Upcoming changes in Google feed requirements

Hello,

You can manually modify the Google Feed Format in all 7.0.x versions, no additional modules or upgrades required. For detailed information
please refer to:

http://resources.drundo.com/post/custom ... merce.aspx
by mikek
Sun May 29, 2011 11:44 pm
Forum: 7.0 DataPort
Topic: How do I complete a backup?
Replies: 2
Views: 4222

Re: How do I complete a backup?

Backup your database means backing up your site mssql database instance that was initially created during AbleCommerce install. In case anything goes wrong with DataPort site database can be restored from the backup copy. If you do not have access to the database server or site is being hosted in a ...
by mikek
Tue May 03, 2011 4:21 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Payment not working after move of website
Replies: 2
Views: 2100

Re: Payment not working after move of website

Try to export the encryption keys - Login to AbleCommerce admin control panel - From the top menu go to: Configure -> Security -> Encryption Key - Under Back-up Encryption Key section click on Get Backups and then import the keys under the new virtual folder. We use both SVN and Mercurial version co...
by mikek
Tue Apr 12, 2011 8:08 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Email List Export Timeout
Replies: 3
Views: 3210

Re: Email List Export Timeout

Hi Jay, The default exportlist functionality tries to find customer address information for each email in the list and times-out if you have more than few hundred emails. If you just need to export email addresses with no additional information you can use the code listed below. - go to [site physic...
by mikek
Fri Mar 18, 2011 4:26 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Disaster Recovery planning
Replies: 3
Views: 3255

Re: Disaster Recovery planning

Hi Deverill, If you do not have access to a server image backup copy and the server can not be restored from backup image, web sites and SSL still have be manually recreated. I would recommend keeping local backup of the following: - full archive in .zip or .rar format of your site Root Folder - bac...
by mikek
Mon Mar 07, 2011 4:27 pm
Forum: AbleCommerce Hosting and Development Providers
Topic: .NET AbleCommerce ready hosting
Replies: 6
Views: 31473

Re: .NET AbleCommerce ready hosting

Hello,

Magento is php/mysql based and is primarily running on LAMP stack based hosting. While the latest IIS 7.5 has native PHP support and is faster than PHP on Apache most PHP
developers feel more comfortable running Magento on LAMP (Linux/Apache/MySQL/PHP).
by mikek
Fri Mar 04, 2011 1:32 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: HOW TO USE SSL LINK?
Replies: 2
Views: 2568

Re: HOW TO USE SSL LINK?

Hello, You may have to add "customer" folder into the App_Data/ablecommerce.config file. Below are the ssl folders included by default. <securePages enabled="true" ignoreHandlers="WithStandardExtensions"> <directories> <add path="Admin" recurse="true" /> <add path="Members" recurse="true" /> <add pa...
by mikek
Mon Feb 28, 2011 10:01 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: authorize.net version advice
Replies: 2
Views: 2366

Re: authorize.net version advice

Hi Glen,

There has not been any changes to the Auth.Net protocol in the last few years. The AC 7.0 version should work fine with no additional changes, you just need to configure AuthNet
from within your AC Admin control panel.
by mikek
Tue Feb 22, 2011 1:49 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Changing IP address with web host
Replies: 3
Views: 2862

Re: Changing IP address with web host

Changing your site IP address should not affect any of the functionality or SEO ranking of your site. However if the service upgrade requires physical site root folder change
you would need to reenter AbleCommerce site license and update feeds paths in the database.