You are here

README.txt in Feeds Excel 6

Same filename and directory in other branches
  1. 7.2 README.txt
  2. 7 README.txt
This module provides an Excel parser for feeds.module.

Requirements
============
- Feeds 1.x
  http://drupal.org/project/feeds
- Token 1.x
  http://drupal.org/project/token
- Libraries API 1.x
  http://drupal.org/project/libraries
- phpExcelReader
  https://github.com/derhasi/phpExcelReader/zipball/interim2
  (originally on http://sourceforge.net/projects/phpexcelreader/files/Spreadsheet_Excel_Reader/Interim%20update/phpExcelReader.zip/download
  but for really being able to use it, it has to be modified, so lives on github for that)

Installation
============
- Install Feeds, Feeds Admin UI and its dependecnies
- Copy this module to your modules directory
- Place the phpExcelReader in the libraries-folder (see below)
- Enable feeds_excel

Now it can be used as parser in Feeds imports.

Problems with large files
=========================
There's a bottle neck in batch processing of feeds.module at the moment. This
can cause (large) excel files not getting completely imported. For more
information on this issue visit http://drupal.org/node/712304.

Parser Settings
===============
Mapping mode:
  Currently there are two modes:
  * "rows" runs through iterative range row-by-row, so each row is a new dataset
  * "columns" runs through iterative range column-by-column, so each column is a new dataset

Fixed Range:
  a region that holds absolute variables, that can be fetch by [sheet-cell-R-C],
  where R represents the row number and C the column number

Iterative Range:
  This is the region where datasets are processed from, either by row or by
  column.

Header Range:
  This option is currently disabled.

Keys for mapping sources
========================
Keys are processed through token.module, so you can inspect possible keys in the
"Legend sources" fieldset on the mapping settings page.

phpExcelReader
==============
The module needs phpExcelReader placed into libraries, so reader.php is located
at sites/all/libraries/phpExcelReader/Excel/reader.php

The library was originally placed at http://sourceforge.net/projects/phpexcelreader/
but needed some modification to work. So I forked it to github:
https://github.com/derhasi/phpExcelReader

There you can download the archive at https://github.com/derhasi/phpExcelReader/zipball/interim2

File

README.txt
View source
  1. This module provides an Excel parser for feeds.module.
  2. Requirements
  3. ============
  4. - Feeds 1.x
  5. http://drupal.org/project/feeds
  6. - Token 1.x
  7. http://drupal.org/project/token
  8. - Libraries API 1.x
  9. http://drupal.org/project/libraries
  10. - phpExcelReader
  11. https://github.com/derhasi/phpExcelReader/zipball/interim2
  12. (originally on http://sourceforge.net/projects/phpexcelreader/files/Spreadsheet_Excel_Reader/Interim%20update/phpExcelReader.zip/download
  13. but for really being able to use it, it has to be modified, so lives on github for that)
  14. Installation
  15. ============
  16. - Install Feeds, Feeds Admin UI and its dependecnies
  17. - Copy this module to your modules directory
  18. - Place the phpExcelReader in the libraries-folder (see below)
  19. - Enable feeds_excel
  20. Now it can be used as parser in Feeds imports.
  21. Problems with large files
  22. =========================
  23. There's a bottle neck in batch processing of feeds.module at the moment. This
  24. can cause (large) excel files not getting completely imported. For more
  25. information on this issue visit http://drupal.org/node/712304.
  26. Parser Settings
  27. ===============
  28. Mapping mode:
  29. Currently there are two modes:
  30. * "rows" runs through iterative range row-by-row, so each row is a new dataset
  31. * "columns" runs through iterative range column-by-column, so each column is a new dataset
  32. Fixed Range:
  33. a region that holds absolute variables, that can be fetch by [sheet-cell-R-C],
  34. where R represents the row number and C the column number
  35. Iterative Range:
  36. This is the region where datasets are processed from, either by row or by
  37. column.
  38. Header Range:
  39. This option is currently disabled.
  40. Keys for mapping sources
  41. ========================
  42. Keys are processed through token.module, so you can inspect possible keys in the
  43. "Legend sources" fieldset on the mapping settings page.
  44. phpExcelReader
  45. ==============
  46. The module needs phpExcelReader placed into libraries, so reader.php is located
  47. at sites/all/libraries/phpExcelReader/Excel/reader.php
  48. The library was originally placed at http://sourceforge.net/projects/phpexcelreader/
  49. but needed some modification to work. So I forked it to github:
  50. https://github.com/derhasi/phpExcelReader
  51. There you can download the archive at https://github.com/derhasi/phpExcelReader/zipball/interim2