nopCommerce 3.00 released

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 years ago
You should not click "Download" button at the top of the changeset page. Download a stable nopCommerce here.

Right now this packages are the same because we did not start working on the next version 3.10. But usually the changeset page contains the development version which should not be used in production (BETA).

P.S. Their sizes are different because one package contains compiled plugins and the other one does not
11 years ago
Another bug, this happens on both my upgraded sites.

Error while running the 'Keep alive' schedule task. The remote server returned an error: (404) Not Found.

System.Net.WebException: The remote server returned an error: (404) Not Found. at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request) at System.Net.WebClient.DownloadString(Uri address) at Nop.Services.Common.KeepAliveTask.Execute() at Nop.Services.Tasks.Task.Execute()
11 years ago
After install nopcommerce 3.0, i have get this error when I go to admin page : "Attempted to divide by zero" in PagedList.cs
"
public PagedList(IQueryable<T> source, int pageIndex, int pageSize)
        {
            int total = source.Count();
            this.TotalCount = total;
            this.TotalPages = total / pageSize;

            if (total % pageSize > 0)
                TotalPages++;

            this.PageSize = pageSize;
            this.PageIndex = pageIndex;
            this.AddRange(source.Skip(pageIndex * pageSize).Take(pageSize).ToList());
        }

"
The pageSize is come from
public ActionResult BestsellersBriefReportByQuantityList(GridCommand command)
        {
            if (!_permissionService.Authorize(StandardPermissionProvider.ManageOrders))
                return Content("");

            var gridModel = GetBestsellersBriefReportModel(command.Page - 1,
                command.PageSize, 1);
            return new JsonResult
            {
                Data = gridModel
            };
        }

Anyone know what was the issue? is this a bugs?
11 years ago
This is happen only for IE 10, it is working fine for google chrome.
Can this be fixed?
11 years ago
lonelymeteor wrote:
...

Please do not duplicate questions/posts. One topic is enough
11 years ago
What an incredible milestone! Great work to everyone involved! Keep up the fantastic work!!
11 years ago
Is it possible to implement free text product search.

I am trying to implement lusine search for that.

if u have know any other way for that please let me know.
11 years ago
[email protected] wrote:
Is it possible to implement free text product search.

Full-Text support was added in version 2.60
11 years ago
Great work guys
11 years ago
Good work!

Can you explain the difference scenario when need to use multi-store and when to use multi-vendor?

Thanks, Domenico.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.