Need help to install and configure to jpgraph libs to right directory in WAMP

Hello,

I’m new to php and want to include some graphs in my php program. I tried all the way I could to configure it correctly ,but all efforts in vein :’(. Can any one please help me with this issue?
My problem goes like:

  1. I have installed the WampServer2.1e-x32, which is perfectly running all php files.
  2. Later I downloaded jpgraph-3.5.0b1 libs.
    Now the problem is that I’m not sure how to configure or where to copy this jpgraph-3.5.0b1 files to include the graphics functionality in the program. I checked for online forum which suggest that I need to make changes in php.ini file like i need to change include_path= directive. I tried this to ,but no use. Any suggestion are really appreciated.

Place the jpgraph-3.5.0b1 folder inside of the site’s folder, for example:

C:\xampp\htdocs\your-site\jpgraph-3.5.0b1

Then require the file into PHP:

[php]require(‘jpgraph-3.5.0b1/jpgraph.php’);[/php]

You may also want to edit the jpg-config.inc.php file inside of the jpgraph-3.5.0b1 folder.

Documentation: http://jpgraph.net/download/manuals/chunkhtml/index.html
Installation Guide: http://jpgraph.net/download/manuals/chunkhtml/ch03.html

Sponsor our Newsletter | Privacy Policy | Terms of Service