Packages in uCommerce in Umbraco - umbraco

I am a beginner with Umbraco and I had installed Umbraco setups and package files from links here.
When I started I found that there is no product catalog displaying as you can see in this link. What should I do? Instead of this I have a store catalog is displaying, So I just want to know,
whether something is missing
or I have to create product catalog manually
or store is replacement of my product catalog

Have a look at the uCommerce TV videos at http://www.ucommerce.dk/en/support/ucommerce-tv.aspx - they go through installing ucommerce, how to setup a catalogue and then in the marketing video it goes through how orders are stored and using promotions and discounts. There should be enough there to get you going.
The 4 videos are about 30 minutes long in total - and well worth taking the time to go through.

Looking at the screen shot you have referred in the tutorial, I would agree "store is replacement of my product catalog". The blog you are referring seems to be bit old (2010).
Refer: http://demo.ucommerce.net/

Related

How to update several Downloadable Products and retain links for existing orders in 1.9

Each time a Downloadable Product has been updated, the system changes the file name from
dancing_happy_people.zip
to
dancing_happy_people_1.zip
and customers who have purchased the original zip are not able to access the updated version.
I went into the cPanel file manager and deleted the obsolete versions and renamed the files (removing the "_1" ) but it made quite a mess and removed download links altogether.
Is there any way to restore links for the downloads to the customers' orders?
Is there any way to update links and retain the link to the customers' orders?
Many grateful thanks for your consideration.

Adding photos to magento ecommerce site

I have recently been assigned the project of reviving our old magento site, which is for a bookstore, version 1.4.1.1. The first order of business that I need to do is to update the inventory on the site, which has about 95,000 items. What is the best way to do this? My inventory is all in a mysql database currently.
Secondly, I need to upload pictures for all of the entries, is there a way/ place that I can specify a base url for the picture, and then just add the specific location (ie bookpic.isbn.gif where the isbn will change based on the isbn of the book)?
I saw a previous post from over a year ago that listed good reference sites, where can I go for updated information?
Have a look on cutesave for an easy implementation and import for simple-products:
https://github.com/magento-hackathon/cutesave
https://github.com/magento-hackathon/cutesave/wiki/Cutesave-Tests
Good luck
Another solution I've used is a dataflow profile (Admin->System->Import/Export) to import products from a flat file. I exported the products from another database to a flat file, then used dataflow to import all products.
I referenced an article that talked about modifying the profile to add an extra step to the import process where it downloads the image from a supplied URL in the flat file and saves it to the media/import directory before it attempts to check the media/import directory to import an image for the product.

Drupal 7 - Redirect path alias to latest node

I'm having some trouble with this problem, users can add photos to my website, I created a custom node template to display all the photos.
But now I want that each time a new photo is added, the path /news/photos/ get's updated to that node.
I'm now using a module called 'Rules' which seems to work ok, but it can't handle some of the problems I'm having.
The site is multi lingual
When a photo is deleted, the path alias is deleted and so is my menu link
Does anybody can think of a solution that would suit my problem?
I am looking to do the same thing. Here is one solution, but not as easy as you might like:
http://eureka.ykyuen.info/2012/05/23/drupal-7-create-a-url-which-display-the-latest-node-of-a-specific-content-type/

Get Plone 4 to import pictures as images and not files when uploading with webdav

I remember back in Plone 2 days I found a simple hack to make one CMFPhoto folder receive webdav files as images (and show them as a gallery).
In Plone4 the images are received as content type files which are not very useful.
Other mass uploading options seem not to be updated to recent versions of Zope/Plone, except uploadify, which makes my server unable to start when installed with buildout.
Functioning webdav would be ideal
Thanks for any ideas, although I can't say I have understood the framework enough to use just a hint
Steen
The short answer is that you need to take a look in the Content Type Registry tool within your site and figure out the settings related to the image (png, jpg) extensions and mime-type that are configured for your site. Visit the Zope Management Interface of your site, and go to ./content_type_registry in he root of your site to take a look.
The more complicated answer is that folders in Plone have a method called PUT_factory() that controls what items get created as. Different folder types can behave differently, but all stock folder types in Plone and most add-ons should obey (unless a bug) the settings in the Content Type Registry.

Add downloaded resources (images) to Bundle?

I am developing an application which is a kind of contact list. This list is updated each times the applications starts.
Each contact in the list has its own photo. A part of this list is common for every user of this application. For this part, I already have all the needed pics and I inlude them in the bundle/archive (which will be sent to Apple).
The pics of the new contacts (added during the lifetime of the app) are downloaded from a remote server (using ASIHTTPRequest). But I don't know how to handle these downloaded pics easily.
I am looking for a way to add these downloaded pics to the main bundle so I can call them using :
+ (UIImage *)imageNamed:(NSString *)name
Do you have any idea of the good practices for this kind of things ?
If new resources can't be added to the main bundle, what are your recommendations ?
Thanks again for your help !
kheraud
You can only add files to your App's Documents directory. The main bundle can't be modified after your App has been released. Read the documentation on how to write to the directory.
Edit_: This should help you to get started http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneosprogrammingguide/StandardBehaviors/StandardBehaviors.html%23//apple_ref/doc/uid/TP40007072-CH4-SW6
I'm doing a similar thing for an app, and in the past I've used a couple of different Categories for UIImage.
For the current version I'm looking at https://github.com/rs/SDWebImage but I had really good luck using this one in a previous version https://github.com/jaanus/UIImageViewCached. For my purpose, I was downloading images from a URL and then caching them for use in a TableView.
HTH

Resources