Save magento data in multiple languages - magento-1.9

I want to save magento data in multiple language from admin such as product,categories, cms pages and order etc. Is there ant paid or free extension to do this. For example when we have created attribute we can save it in multi language. I want this facility for all magnto data. https://www.awesomescreenshot.com/image/3055039/9eeca2c207814aa84872f24f86477613
Product > product name -> 1 eng - 2nd any national language - 2 local language of county selected in 2nd
Product > product Description -> 1 eng - 2nd any national language - 2 local language of county selected in 2nd
For all data of magneto

There is no need for an extension. magento 1 is already multilingual. A store view is nothing more than an alternative language version of a store. If you need an different way of inserting/updating data then you should look into a an external PIM system

Related

How to detect if a text is Person, Organization, or other entity using Spacy?

I have a csv records of sales, each record has column customer name. This column is a combination of persons name and organization name. How can I use spacy to detect if a this column is a person or organization?
This is a 'Named Entity Recognition' task. Spacy has a pretty good documentation:
doc = nlp(u'Apple is looking at buying U.K. startup for $1 billion')
for ent in doc.ents:
print(ent.text, ent.start_char, ent.end_char, ent.label_)
Apple 0 5 ORG

Magento migration from 1.9.1.0 to Magento 2 doesn' show product in front end

I have installed Magento 1.9.1.0 with sample data, without error. After that installed magento 2x without error. Then i migrate content from 1.9.1.0 to 2x with data migration tool, and it completed. Products and almost all informations are migrated, and i can see product in Admin side. But couldn't visible for other users.It showing 'We can't find products matching the selection.'. What would be the problem???
To show the product, check if the product following options:
General->Status = Enabled
general->Visibility = Catalog,Search
Inventory->Qty > 0
Inventory->Stock Availability = In Stock
Websites = checking your site
Catgories = checking your category.
If you want checking product to subcategory, go to Catalog->Manage Categories->Select your category, open tab Display Settings and change option "Is Anchor" to "Yes". Save category

Skip rows when importing CSV to PowerPivot

I frequently need to pull some CSV reports and analyze them using powerpivot. The "issue" is that the tool spits out the report like this:
Report Name Keywords (Group contains 778600, Campaign contains us-en)
Client XYZ
Scope Entire Account
Date Range 3/12/2015
Filters Campaign contains us-en; Group contains 778600; Clicks > 0; Reduced Dimension
Keyword Account Publisher Campaign Group Search Bid $ Status Destination URL
Total for all 2 keywords
Keyword Account Publisher Campaign Group Search Bid $ Status Destination URL
bla bla bla Account Name Publisher Name Campaign Name Group Name 1 Active URL
So what i always need to do is to remove the first 9 rows of the CSV prior to importing. Usually i can do this on Notepad++, but sometimes the CSV is so large that i actually can't really open it to edit. So far i'm using a program called 010 Editor, but i have only some days left of it.
Is there an easy way to skip those rows when importing?
Thanks a lot
You can use Power Query (free to download) to load data to Power Pivot. It allows you to skip the first x rows and filter out rows with blank/null values. Once you are able to get this to work once, you can copy the M code to use it on other CSVs. Or you can automate it as a function and just feed it file locations.

How to extract all configurable products (name,sku,brand,tier prices) from Magento (sql query)?

I need to extract configurable products only from magento. I need a query to perform it or model to work with configurable products.
The menu System / Import-Export of the Backoffice is designed for this purpose.
particularly the Dataflow - Profiles entry where you have a "Export all product" profile customisable/filterable with a assitant.
You can use the CSV/XML/whatever generated to generate a PDF (your call)
Try
$_productCollection = $this ->getLoadedProductCollection()
->addAttributeToFilter('type_id','configurable');
//print_r($_productCollection);
foreach($_productCollection as $product){
echo $product->getSku();
.....
}
Then pass this info into your function to create the pdf like this How to create a pdf in magento?
See more # Magento - load only configurable products

bot to edit mediawiki categories

I have a mediawiki with different type of categories.
If a page has 2 categories
[[Category:Pear]][[Category:Strawberry]])
I want to add a third category
[[Category:Fruit_Salad]]
Is it possible to do that automatically? (using a bot for instance)
Edit: In fact, what I need is an API for categories
a way to read the category
a way to add a new category
The rest can be done by any program
You are probably looking for the pywikipediabot framework. (Check catlib.py for the category manipulation code, and category.py for an end-user-friendly mass category modification bot.)