You are here

README.txt in Ubercart Views 6.2

Same filename in this branch
  1. 6.2 README.txt
  2. 6.2 uc_views_bulk_operations/README.txt
Same filename and directory in other branches
  1. 6.3 README.txt
  2. 6 README.txt
Welcome to Ubercart Views.
--------------------------

The module depends heavily on the popular Views module (http://drupal.org/project/views). For maximum
benifit of this module, you should at least know the basics of that great module

If you're having trouble installing this module, please ensure that your 
tar program is not flattening the directory tree, truncating filenames
or losing files.

Installing Ubercart Views:
--------------------------

Place the content of this directory in sites/all/modules/uc_views

Navigate to administer >> build >> modules. Enable Ubercart Views.

Please note that most of the views included in this module assumes that images are turned on and
configured for products (See administer >> Store administration)

After installation you will have a number of default views which you can enable and modify by navigating to:
http://your-site/admin/build/views

Since this module utilizes database views, you should make sure that your database user has
CREATE VIEW permission. Some users has reported that ALL PRIVILEGES oddly enough doesn't
necessary include CREATE VIEW.

If you lack CREATE VIEW permissions you will get errors like this:
 uc_order_products_qty_vw (nid,order_count,avg_qty,sum_qty,max_qty,min_qty) AS
 SELECT `op`.`nid` AS `nid`, COUNT(`op`.`nid`) AS `order_count`,AVG(`op`.`qty`) AS
 `avg_qty`, SUM(`op`.`qty`) AS `sum_qty`,MAX(`op`.`qty`) AS `max_qty`, MIN(`op`.`qty`) AS
 `min_qty` FROM `uc_order_products` `op` GROUP BY `op`.`nid` ORDER BY `op`.`nid`
 in /var/www/sites/all/modules/uc_views/uc_views.install on line 9.

About Ubercart Views
--------------------
This module provides various views on Ubercart data, such as lists of popular products,
users favourite products, 'users who bought the selected product also bought these' and more.
It also describes some of the Ubercart data tables to views, so you can create your own views, based
on these data.

The module will install a number of database views, which is needed for some of the default views
that ships with this module. If that is a problem for you, you should keep theese disabled, and remove
the database views after installation (the sql to remove the views are found in the .install file).

Ubercart Views is developed with the help of Lenio A/S (www.lenio.dk)

File

README.txt
View source
  1. Welcome to Ubercart Views.
  2. --------------------------
  3. The module depends heavily on the popular Views module (http://drupal.org/project/views). For maximum
  4. benifit of this module, you should at least know the basics of that great module
  5. If you're having trouble installing this module, please ensure that your
  6. tar program is not flattening the directory tree, truncating filenames
  7. or losing files.
  8. Installing Ubercart Views:
  9. --------------------------
  10. Place the content of this directory in sites/all/modules/uc_views
  11. Navigate to administer >> build >> modules. Enable Ubercart Views.
  12. Please note that most of the views included in this module assumes that images are turned on and
  13. configured for products (See administer >> Store administration)
  14. After installation you will have a number of default views which you can enable and modify by navigating to:
  15. http://your-site/admin/build/views
  16. Since this module utilizes database views, you should make sure that your database user has
  17. CREATE VIEW permission. Some users has reported that ALL PRIVILEGES oddly enough doesn't
  18. necessary include CREATE VIEW.
  19. If you lack CREATE VIEW permissions you will get errors like this:
  20. uc_order_products_qty_vw (nid,order_count,avg_qty,sum_qty,max_qty,min_qty) AS
  21. SELECT `op`.`nid` AS `nid`, COUNT(`op`.`nid`) AS `order_count`,AVG(`op`.`qty`) AS
  22. `avg_qty`, SUM(`op`.`qty`) AS `sum_qty`,MAX(`op`.`qty`) AS `max_qty`, MIN(`op`.`qty`) AS
  23. `min_qty` FROM `uc_order_products` `op` GROUP BY `op`.`nid` ORDER BY `op`.`nid`
  24. in /var/www/sites/all/modules/uc_views/uc_views.install on line 9.
  25. About Ubercart Views
  26. --------------------
  27. This module provides various views on Ubercart data, such as lists of popular products,
  28. users favourite products, 'users who bought the selected product also bought these' and more.
  29. It also describes some of the Ubercart data tables to views, so you can create your own views, based
  30. on these data.
  31. The module will install a number of database views, which is needed for some of the default views
  32. that ships with this module. If that is a problem for you, you should keep theese disabled, and remove
  33. the database views after installation (the sql to remove the views are found in the .install file).
  34. Ubercart Views is developed with the help of Lenio A/S (www.lenio.dk)