diff --git a/Documentation.html b/Documentation.html index 8f7e66f871..8238b31547 100644 --- a/Documentation.html +++ b/Documentation.html @@ -4373,6 +4373,41 @@ INSERT INTO REL_towns VALUES ('M', 'Montréal');
Not every table can be put to the chart. Only tables with one, two or three columns can be visualised as a chart. Moreover the table must be in a special format for chart script to understand it. Currently supported formats can be found in the wiki.
++ An ESRI Shapefile is actually a set of several files, where .shp file contains + geometry data and .dbf file contains data related to those geometry data. + To read data from .dbf file you need to have PHP compiled with the dBase extension + (--enable-dbase). Otherwise only geometry data will be imported. +
+ +To upload these set of files you can use either of the following methods:
++ Configure upload directory with + $cfg['UploadDir'], upload both + .shp and .dbf files with the same filename and chose the .shp file from the import page. +
++ Create a Zip archive with .shp and .dbf files and import it. For this to work, + you need to set $cfg['TempDir'] to a + place where the web server user can write (for example './tmp'). +
+ +To create the temporary directory on a UNIX-based system, you can do:
++cd phpMyAdmin +mkdir tmp +chmod o+rwx tmp ++