|
Posted:
Friday, July 1, 2011 7:38 AM
|
eccolightssales@gmail.com wrote:Hey and thanks for your prompt reply.
As stated we uploaded the .dll files to our ftp in replacement of the ones already there. Once that was done we went to our site and got a "timed out" error (taking to long to load?) So assuming that the change didn't take place and not wanting to have much downtime during the transition we just replaced the original .dll files back and at first got the same error. After our frantic post we tried the site again and it was back.
So for right now its up but would love to implement this addition to our site. With our large drop down for our scents it would be awesome to not have to change each product every time and do it all in one shot.
Per the read me file, is it really just a simple replace the .dll files and things should work or would we need to recompile the site first to make this work?
No changes to the source have been made just a few minor tweaks to the three column layout and such.
Thanks for any input you can give here and we will await your reply =)
Rob
When you recompile and/or replace your dlls the website will take longer to load... something about having new dlls makes the web app take a long time to load the fist time. I don't know why it would time out and I also don't know why it would do the same thing once you replaced the original dlls back. You may want to try again (during a time when you think your customers aren't using your site - late at night or something) and see if the site will come up. Give it a few tries and if it times out every time then put the old files back. I can see why you would really want the control as you have a TON of options on your drop down! Let me know if you try this...
All that I can tell you is that I tried the dll replacement thing with a new installation of nopcommerce (local installation) and it worked fine.
Posted:
Thursday, June 9, 2011 12:51 PM
|
eccolightssales@gmail.com wrote:Just an update, looks like the site is back up but still would like to figure this out how to implement. Any help would be wonderful! BTW, sorry for the frantic prior post but you know how it is when your site goes down...LOL
I'm sorry I didn't get to see what was going on... can you tell me what happened? What error was it showing?
Posted:
Thursday, June 9, 2011 12:34 PM
|
ross.gibby@gmail.com wrote:did you guys ever figure this one out? Thanks
Give me a couple of days and I'll repost the code, just to make sure.
Posted:
Tuesday, May 24, 2011 2:21 PM
|
How did you install the prefilled drop down? Did you use the .dll files or did you add the code and re-compile the project? I have had this issue in the past when I was developing it, but I fixed that and it works just fine on this site - even showing up in the cart.
This bit of code in "public stirng SelectedAttributes" in ProductAttributes.ascx.cs is what grabs the value of the drop down and passes it to the cart page:
case AttributeControlTypeEnum.PrefilledDropdownList: { var ddlPrefilled = phAttributes.FindControl(controlId) as NopPrefilledDropDown; if (ddlPrefilled != null) { if (ddlPrefilled.Value != "---") { selectedAttributes = ProductAttributeHelper.AddProductAttribute(selectedAttributes, attribute, ddlPrefilled.Value); } } } break;
The "ddlPrefilled.Value" is the value of the drop down... that should have something in it to pass.
I'll have to make sure when I get home that the code that I have posted is the code that I have on my site that works. I'm pretty sure it is, and it works on my site.
Posted:
Wednesday, May 18, 2011 11:52 AM
|