Really need help

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
Mange211 wrote:
I can share it, how do I do? I do not have space so I can upload it

use any file sharing service (such as http://www.mediafire.com/)
12 years ago
Thanks :)

I will upload it tonight. I'll get back with the link later.

Thanks again for your help
11 years ago
Mange211 wrote:
Thanks :)

I will upload it tonight. I'll get back with the link later.

Thanks again for your help


I am getting the same error, so can you please share what was the problem over there? How could you got succeed to solve this problem ?

I can solve this error if I remove .DataTokens.Add("area", "admin") from route provider of Configure page in my Plugin, but I don't want to remove it because from this my Restart Application link will brake from my configure page.

Your help will be appreciated.

Thank You.
10 years ago
I just suffered the same problem, and looking at the source provided, it seems this user had the same problem I did. The controller I implemented was not marked "public" and as such was only available as an "internal" or "friend" class to the assembly in which it resides, so be sure to check your access modifier before you waste several hours on this like I have.
10 years ago
That is the solution! Thank you
10 years ago
I have the same problem also, and it work on my local PC and when I work on Server I have this problem.


  /// <summary>
        /// Gets a route for provider configuration
        /// </summary>
        /// <param name="actionName">Action name</param>
        /// <param name="controllerName">Controller name</param>
        /// <param name="routeValues">Route values</param>
        public void GetConfigurationRoute(out string actionName, out string controllerName, out RouteValueDictionary routeValues)
        {
            actionName = "Configure";
            controllerName = "PaymentMaybankCreditCard";
            routeValues = new RouteValueDictionary() { { "Namespaces", "Nop.Plugin.Payments.MaybankCreditCard.Controllers" }, { "area", null } };
        }

        /// <summary>
        /// Gets a route for payment info
        /// </summary>
        /// <param name="actionName">Action name</param>
        /// <param name="controllerName">Controller name</param>
        /// <param name="routeValues">Route values</param>
        public void GetPaymentInfoRoute(out string actionName, out string controllerName, out RouteValueDictionary routeValues)
        {
            actionName = "PaymentInfo";
            controllerName = "PaymentMaybankCreditCard";
            routeValues = new RouteValueDictionary() { { "Namespaces", "Nop.Plugin.Payments.MaybankCreditCard.Controllers" }, { "area", null } };
        }
10 years ago
I had found the solution from
https://www.nopcommerce.com/boards/t/12884/alipay-payment-plugin-error-on-hiting-the-configure-link.aspx
Page 4
10 years ago
Special thanks to @antix. I missed access modifier and faced this problem. Thank you so much.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.