squirrelmail and UebiMiau does not work

amadorpfs

Verified User
Joined
Dec 19, 2005
Messages
7
I am trying to access thos e webmails but no one works. it cames on a blank page all the time.

any ideas?
 
Are you the system owner/administrator? Or an end-user with a hosting account?

If you're an end-user (site owner) with a hosting account, you'll need to contact your hosting company.

Now, presuming you're the owner/administrator of the server:

"does not work" doesn't give us any information at all.

Can you reach the page? Can you login?

What URL are you attempting?

Jeff
 
nothing

I am the administrator server and nothing comming on the broser only a blank page, this happen to me on the webmails and on the phpmyadmin.
 
Is this a new server? If not what changed? Perhaps a new version of Apache was installed and the DA version is not the one serving pages. Also, you might want to check your log files to see where it actually is trying to serve the pages from.
 
server new

the server have 2 days.... i done some changes to secure it, evething works apart of webmails and phpmyadmin.

System Uptime 2 Days, 4 Hours and 59 Minutes
Apache 1.3.34 Running
DirectAdmin 1.26.0 Running
Exim 4.50 Running
MySQL 4.1.10a Running
Named 9.2.5 Running
ProFTPd 1.2.10 Running
sshd Running
vm-Pop3d 1.1.7f-T6-DA Running
 
webmail and phpmyadmin are accessed via alias in Apache. Perhaps during your securing aliasing was broken.
 
The following lines in the /etc/httpd/conf/httpd.conf do the aliasing for those services
Code:
Alias /phpMyAdmin /var/www/html/phpMyAdmin/
Alias /phpmyadmin /var/www/html/phpMyAdmin/
Alias /webmail /var/www/html/webmail/
Alias /squirrelmail /var/www/html/squirrelmail/

If your httpd.conf file doesn't have them then add them. The syntax is
Code:
Alias $aliaspath $realpath
where $aliaspath is the path that appends to all domains, and the $realpath is the physical path on the drive. This makes it so
http://domain1.com/phpmyadmin and
http://domain2.com/phpmyadmin
both use the same install of phpmyadmin, assuming domain1.com and domain2.com are served by that httpd.conf.
 
this is what i have

This is part of mi code:
##################

CustomLog logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"

</VirtualHost>

###</IfDefine>



#Start DirectAdmin Settings
Alias /config /var/www/html/redirect.php
Alias /phpMyAdmin /var/www/html/phpMyAdmin/
Alias /webmail /var/www/html/webmail/
Alias /squirrelmail /var/www/html/squirrelmail/

ErrorDocument 400 /400.shtml
ErrorDocument 401 /401.shtml
ErrorDocument 403 /403.shtml
ErrorDocument 404 /404.shtml
ErrorDocument 500 /500.shtml

#All NameVirtualHost lines are in this file
#Don't remove this line or apache will generate errors.
Include /etc/httpd/conf/ips.conf
###################

doing some changes now it comes on the broser
http://www.bolhost.com/phpMyAdmin/

also i found this:

www]# ls
cgi-bin html icons manual phpMyAdmin? phpmyadmin.sh usage

The "phpMyAdmin?" is correct? how can i cange the name?
 
Last edited:
php files not mach

on the server i could see that no one of the php files is mach on the broser, but php is installed......

<IfDefine HAVE_PHP>
LoadModule php_module modules/mod_php.so
</IfDefine>
################
<IfDefine HAVE_PHP>
AddModule mod_php.c
</IfDefine>
<IfDefine HAVE_PHP3>
AddModule mod_php3.c
</IfDefine>
###<IfDefine HAVE_PHP4>
AddModule mod_php4.c
###</IfDefine>
####################
<IfModule mod_dir.c>
DirectoryIndex index.html index.php index.htm index.shtml index.phtml index.cgi index.asp index.jsp
</IfModule>


any ideas?
 
Are you sure you are starting apache via the inetd startup script (either '/etc/init.d/httpd start' or 'service httpd start' on RedHat). If you are not, then a bunch of variables are not passed and the modules won't be activated.

As far as changing the name of phpMyAdmin, don't change the name, just add another line with a new name.

Take a look at your log files. I am guessing, that there is something in there that will explain the behaviour you are seeing.
 
Back
Top