PDA

View Full Version : Network Map not displaying


morgolis
11-11-2004, 06:53
I had to change a few things on my server, namely i downgraded from Apache 2.0.51 to Apache 1.3.33.
I'm running MySQL 4.1.7-0 and PHP4 (I compiled PHP4 and Apache from source)
It's up and running, i can get to the webpage and do pretty much everything except it doesn't show the network graphs, screens or any type of graphic.

Checked the error_logs and nothing there nor are there any errors or messages in /var/log/messages.

I have other websites working that use PHP with no issues. Any ideas?

shaihi
11-11-2004, 13:08
did you include the gd module?
check this link on how to install the apache and php
http://dan.drydog.com/apache2php.html
Shai

morgolis
11-11-2004, 19:54
i compiled apache with --enable-shared=max, --with-mysql and --with-apxs.
Also, apache version i'm running is 1.3.33, not apache2.

Is there a line in the apache config that shows gdbm? Is it a loaded module?

These are the modules that are loaded in my httpd.conf:
LoadModule env_module libexec/mod_env.so
LoadModule config_log_module libexec/mod_log_config.so
LoadModule mime_module libexec/mod_mime.so
LoadModule negotiation_module libexec/mod_negotiation.so
LoadModule status_module libexec/mod_status.so
LoadModule includes_module libexec/mod_include.so
LoadModule autoindex_module libexec/mod_autoindex.so
LoadModule dir_module libexec/mod_dir.so
LoadModule cgi_module libexec/mod_cgi.so
LoadModule asis_module libexec/mod_asis.so
LoadModule imap_module libexec/mod_imap.so
LoadModule action_module libexec/mod_actions.so
LoadModule userdir_module libexec/mod_userdir.so
LoadModule alias_module libexec/mod_alias.so
LoadModule access_module libexec/mod_access.so
LoadModule auth_module libexec/mod_auth.so
LoadModule setenvif_module libexec/mod_setenvif.so
LoadModule perl_module libexec/libperl.so
LoadModule php4_module libexec/libphp4.so

Suggestions?

Alexei
11-11-2004, 20:09
Do you have support of GD compiled in PHP4? Use PHP function phpinfo(); to check this.

morgolis
12-11-2004, 23:53
In order to get gd installed from PHP, you can't just use the --with-gd switch, you must also include --with-zlib to include the zlibraries.

I'm up and working now. Thanks for the help Alexei