phpmyadmin Problem.
Submitted by dlap on Sun, 12/28/2008 - 01:03
Dear,
- Im missing Phpmyadmin, and i do not know the right command to copy/past my phpmyadmin from /usr/share/phpmyadmin/ other topic didn't help becouse im useing Kubuntu unix.
- When i add a Client/Domain Owner what will be his URL then, http://82.73.28.164 This is my DNS Link. Like adding a "Easy Add Domain" but the domain is not linked yet to our DNS. what kind of url will get the client then ?
- I can't login to mine mail services, "ERROR: Connection dropped by IMAP server." I installed all kind of IMAP services at "adept Manager" inside of kubuntu but it isn't working.
BEST REGARDS,
Danny Lap - http://www.thenextlan.nl/
Forums:
ehcpdeveloper
Sun, 12/28/2008 - 01:41
Permalink
Re: phpmyadmin problem
1- ehcp should have installed phpmyadmin. if not, you may manually install by "apt-get install phpmyadmin" at command line.. if you cant find it even you install it with this command, then there is a different problem...
2- without linking/redirecting domain to your dns, client can only see his/her domain like http://yourip/vhosts/ftpaccount/domain.com/httpdocs
this is useless in most cases.. because, most programs/scripts hard code this when installing something.. but may be useful for only hosting html files.. or seeing something..
users can upload their files by ftp, without redirecting domains.. using ip of your server.
Clients can also login to your ehcp using http://yourip , that contains your ehcp and ehcp clients/users/domainadmins/resellers will login through ehcp.. at http://yourip
3- :) I suggest you not to install all imap services.. just install ehcp on top of a clean ubuntu/kubuntu/debian system.. thats all. ehcp installs all necessary pop/imap/email etc. services..
see you
dlap
Sun, 12/28/2008 - 10:22
Permalink
-1 The phpmyadmin is istalled
-1 The phpmyadmin is istalled but not at the /var/www/, he is installed at /usr/share/phpmyadmin/ so i can not browes to it now.
ehcpdeveloper
Sun, 12/28/2008 - 11:17
Permalink
it is installed there but, it
it is installed there but, it should be accessible at http://yourip/phpmyadmin
can you access? did you test ?
if you cant :
try one of these:
1- check is there a file /etc/apache2/conf.d/phpmyadmin.conf ?
if there is no file, you may create it as follows:
Alias /phpmyadmin /usr/share/phpmyadmin
<Directory /usr/share/phpmyadmin>
Options Indexes FollowSymLinks
DirectoryIndex index.php
# Authorize for setup
<Files setup.php>
# For Apache 1.3 and 2.0
<IfModule mod_auth.c>
AuthType Basic
AuthName "phpMyAdmin Setup"
AuthUserFile /etc/phpmyadmin/htpasswd.setup
</IfModule>
# For Apache 2.2
<IfModule mod_authn_file.c>
AuthType Basic
AuthName "phpMyAdmin Setup"
AuthUserFile /etc/phpmyadmin/htpasswd.setup
</IfModule>
Require valid-user
</Files>
<IfModule mod_php4.c>
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_value include_path .
</IfModule>
<IfModule mod_php5.c>
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_value include_path .
</IfModule>
</Directory>
Then restart apache
2- another way is to copy those files under /var/www
dlap
Sun, 12/28/2008 - 12:25
Permalink
Dear, Copy/past is easier :D
Dear,
Copy/past is easier :D but in the old version of kubuntu i can login desktop root user, ow i can't anymore so its difficult to copy that files. I'll try what u said Thanks.
dlap
Sun, 12/28/2008 - 15:20
Permalink
So i need to make a new
So i need to make a new /etc/apache2/conf.d/phpmyadmin.conf, with included:
=======================
Alias /phpmyadmin /usr/share/phpmyadmin
<Directory /usr/share/phpmyadmin>
Options Indexes FollowSymLinks
DirectoryIndex index.php
# Authorize for setup
<Files setup.php>
# For Apache 1.3 and 2.0
<IfModule mod_auth.c>
AuthType Basic
AuthName "phpMyAdmin Setup"
AuthUserFile /etc/phpmyadmin/htpasswd.setup
</IfModule>
# For Apache 2.2
<IfModule mod_authn_file.c>
AuthType Basic
AuthName "phpMyAdmin Setup"
AuthUserFile /etc/phpmyadmin/htpasswd.setup
</IfModule>
Require valid-user
</Files>
<IfModule mod_php4.c>
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_value include_path .
</IfModule>
<IfModule mod_php5.c>
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_value include_path .
</IfModule>
</Directory>
=========================
best regards