The webservice password is under:
Console -> Settings -> NMID
Can you reach the following URL and does it display an XML syntax ?
http://192.168.0.28/cacti/plugins/nmidW ... e.php?wsdl
If not,do you have the "php-soap" module installed ?
nmidWebService Version 2 released - Remote Display of Graphs
Moderators: Developers, Moderators
- phalek
- Developer
- Posts: 2838
- Joined: Thu Jan 31, 2008 6:39 am
- Location: Kressbronn, Germany
- Contact:
Re: nmidWebService Version 2 released - Remote Display of Gr
Greetings,
Phalek
---
Need more help ? Read the Cacti documentation or my new Cacti 1.x Book
Need on-site support ? Look here Cacti Workshop
Need professional Cacti support ? Look here CereusService
---
Plugins : CereusReporting
Phalek
---
Need more help ? Read the Cacti documentation or my new Cacti 1.x Book
Need on-site support ? Look here Cacti Workshop
Need professional Cacti support ? Look here CereusService
---
Plugins : CereusReporting
-
- Posts: 9
- Joined: Thu May 22, 2014 2:31 pm
Re: nmidWebService Version 2 released - Remote Display of Gr
I was not able to get to it. I also did not have php-soap installed so I installed it and even rebooted my system. but still nothing comes up but a blank page.
Any thoughts
Thanks
Any thoughts
Thanks
- phalek
- Developer
- Posts: 2838
- Joined: Thu Jan 31, 2008 6:39 am
- Location: Kressbronn, Germany
- Contact:
Re: nmidWebService Version 2 released - Remote Display of Gr
check your php error log ( enable it via php.ini : error_log = syslog ) and check what's noted there.
Greetings,
Phalek
---
Need more help ? Read the Cacti documentation or my new Cacti 1.x Book
Need on-site support ? Look here Cacti Workshop
Need professional Cacti support ? Look here CereusService
---
Plugins : CereusReporting
Phalek
---
Need more help ? Read the Cacti documentation or my new Cacti 1.x Book
Need on-site support ? Look here Cacti Workshop
Need professional Cacti support ? Look here CereusService
---
Plugins : CereusReporting
Re: nmidWebService Version 2 released - Remote Display of Gr
Hi,
I've succeeded to set up your plugin and work great but, the quality of the graph is poor, how it could be raised ?
thanks.
I've succeeded to set up your plugin and work great but, the quality of the graph is poor, how it could be raised ?
thanks.
- phalek
- Developer
- Posts: 2838
- Joined: Thu Jan 31, 2008 6:39 am
- Location: Kressbronn, Germany
- Contact:
Re: nmidWebService Version 2 released - Remote Display of Gr
The function you need to look at is the "getGraph" function from the "graph_functions.php" file.
The party you may play around with is this one:
Maybe changing this function to this may help you:
The party you may play around with is this one:
Code: Select all
// Create the Cacti image:
system($php_binary . " create_image.php ". $i_lgid ." 0 ". $i_start ." ". $i_end ." ". $i_height ." ". $i_width ." ".$i_nolegend." > ". $s_imgname );
// Create an image object from the newly created file/image:
$tmp_image = @ImageCreateFromPNG ($s_imgname);
// Get the Image width and height
$width = imagesx($tmp_image);
$height = imagesy($tmp_image);
// Do some resampling:
$new_image = imagecreatetruecolor($i_width,$i_height);
ImageCopyResampled($new_image, $tmp_image,0,0,0,0, $i_width, $i_height, $width, $height);
imagealphablending ( $new_image, FALSE );
imagepng($new_image, $s_imgname);
// open the freshly created image and read its content
$h_handle = fopen( $s_imgname, "rb" );
Maybe changing this function to this may help you:
Code: Select all
// Create the Cacti image:
system($php_binary . " create_image.php ". $i_lgid ." 0 ". $i_start ." ". $i_end ." ". $i_height ." ". $i_width ." ".$i_nolegend." > ". $s_imgname );
// --> Removed Image processing <--
// open the freshly created image and read its content
$h_handle = fopen( $s_imgname, "rb" );
Greetings,
Phalek
---
Need more help ? Read the Cacti documentation or my new Cacti 1.x Book
Need on-site support ? Look here Cacti Workshop
Need professional Cacti support ? Look here CereusService
---
Plugins : CereusReporting
Phalek
---
Need more help ? Read the Cacti documentation or my new Cacti 1.x Book
Need on-site support ? Look here Cacti Workshop
Need professional Cacti support ? Look here CereusService
---
Plugins : CereusReporting
Who is online
Users browsing this forum: No registered users and 0 guests