Re: [PHP] Alternative to phpMyAdmin

2001-07-16 Thread root

Yea, I do mean SSH. Oops.







On Saturday 14 July 2001 18:29, you wrote:
> You probably mean SSH tunnel, which is quite feasable--  Hank Marquardt
> posted this earlier to the list:
>
> --- BEGIN QUOTE ---
>
> Works just fine ... as does postgres --
>
> ssh -N -2 -f -C -c blowfish -L3306:yourdatabase.server.here:3306
> [EMAIL PROTECTED]
>
> or the other usual tricks work too ... like going through a firewall
> (fyi ... clear text on the *other* side of the firewall):
>
> ssh -N -2 -f -C -c blowfish -L3306:db_behind_thefirewall:3306
> [EMAIL PROTECTED]
>
> The only oddity is that you will have to use the local host *address*
> 127.0.0.1 to connect from the mysql client as it normally looks for a
> local socket if you use 'localhost', so your connection will be:
>
> mysql -h 127.0.0.1
>
> for postgres examples, change the port numbers (3306) to 5432
>
> --- END QUOTE ---
>
> -Original Message-
> From: Evan Nemerson [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, July 14, 2001 6:02 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP] Alternative to phpMyAdmin
>
>
> What if you were to open an SSL tunnel to the DB host, then connect
> through
> that???
>
> > like you said... as long as the database provider accepts connections
> > from outside, you can administer it from anywhere.
> >
> > if the provider doesn't accept incoming connections, no amount of
> > tools and software will work for you.
> >
> > > -Original Message-
> > > From: Alexander Skwar [mailto:[EMAIL PROTECTED]]On Behalf Of
> > > Subject: RE: [PHP] Alternative to phpMyAdmin
> > >
> > > > if you install mysql on a windoze machine then you can administer
> > > > ANY >
> > >
> > > mysql database going through the socket.
> > >
> > > Okay, for a development this may be fine, but I still fail to see
> > > how a tool that runs on your own computer (no matter if it's a
> > > Windows tool, or a Linux tool) can help you administer databases
> > > which are not on the same computer (unless the mysql database on the
> > >
> > > providers server can be contacted from any machine and not just from
> > >
> > > "localhost").

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-14 Thread Matthew Loff


You probably mean SSH tunnel, which is quite feasable--  Hank Marquardt
posted this earlier to the list:

--- BEGIN QUOTE ---

Works just fine ... as does postgres --

ssh -N -2 -f -C -c blowfish -L3306:yourdatabase.server.here:3306
[EMAIL PROTECTED]

or the other usual tricks work too ... like going through a firewall
(fyi ... clear text on the *other* side of the firewall):

ssh -N -2 -f -C -c blowfish -L3306:db_behind_thefirewall:3306
[EMAIL PROTECTED]

The only oddity is that you will have to use the local host *address*
127.0.0.1 to connect from the mysql client as it normally looks for a
local socket if you use 'localhost', so your connection will be:

mysql -h 127.0.0.1

for postgres examples, change the port numbers (3306) to 5432

--- END QUOTE ---

-Original Message-
From: Evan Nemerson [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, July 14, 2001 6:02 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Alternative to phpMyAdmin


What if you were to open an SSL tunnel to the DB host, then connect
through 
that???

> like you said... as long as the database provider accepts connections 
> from outside, you can administer it from anywhere.
>
> if the provider doesn't accept incoming connections, no amount of 
> tools and software will work for you.
>
> > -Original Message-
> > From: Alexander Skwar [mailto:[EMAIL PROTECTED]]On Behalf Of
> > Subject: RE: [PHP] Alternative to phpMyAdmin
> >
> > > if you install mysql on a windoze machine then you can administer 
> > > ANY >
> >
> > mysql database going through the socket.
> >
> > Okay, for a development this may be fine, but I still fail to see 
> > how a tool that runs on your own computer (no matter if it's a 
> > Windows tool, or a Linux tool) can help you administer databases 
> > which are not on the same computer (unless the mysql database on the

> > providers server can be contacted from any machine and not just from

> > "localhost").
> >


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] To
contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Alternative to phpMyAdmin

2001-07-14 Thread Evan Nemerson

What if you were to open an SSL tunnel to the DB host, then connect through 
that???

> like you said... as long as the database provider accepts
> connections from outside, you can administer it from anywhere.
>
> if the provider doesn't accept incoming connections, no amount
> of tools and software will work for you.
>
> > -Original Message-
> > From: Alexander Skwar [mailto:[EMAIL PROTECTED]]On Behalf Of
> > Subject: RE: [PHP] Alternative to phpMyAdmin
> >
> > > if you install mysql on a windoze machine then you can administer ANY >
> >
> > mysql database going through the socket.
> >
> > Okay, for a development this may be fine, but I still fail to see how a
> > tool that runs on your own computer (no matter if it's a Windows tool, or
> > a Linux tool) can help you administer databases which are not on the same
> > computer (unless the mysql database on the providers server can be
> > contacted from any machine and not just from "localhost").
> >


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread scott [gts]

like you said... as long as the database provider accepts
connections from outside, you can administer it from anywhere.

if the provider doesn't accept incoming connections, no amount
of tools and software will work for you.

> -Original Message-
> From: Alexander Skwar [mailto:[EMAIL PROTECTED]]On Behalf Of
> Subject: RE: [PHP] Alternative to phpMyAdmin
>
>
> > if you install mysql on a windoze machine then you can administer ANY >
> mysql database going through the socket.
>
> Okay, for a development this may be fine, but I still fail to see how a
> tool that runs on your own computer (no matter if it's a Windows tool, or
> a Linux tool) can help you administer databases which are not on the same
> computer (unless the mysql database on the providers server can be
> contacted from any machine and not just from "localhost").
>
> --
> Homepage:http://www.digitalprojects.com   |   http://www.iso-top.de
> iso-top.de - Die günstige Art an Linux Distributionen zu kommen
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread Matthew Loff


Unfortunately, it doesn't -- you bring up a good point. 

It does support the compressed client/server protocol, which would make
it harder to intercept-- but encryption is not an option yet on the
client.

I don't suppose there's any way on Win32 to use an SSH tunnel, is there?


-Original Message-
From: Egan [mailto:[EMAIL PROTECTED]] 
Sent: Friday, July 13, 2001 10:06 AM
To: Steve Brett
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] Alternative to phpMyAdmin


On Fri, 13 Jul 2001 11:15:52 +0100, "Steve Brett"
<[EMAIL PROTECTED]> wrote:

>one of the guys i work for has an account with a service provider that 
>gives mysql databases as part of his package. he has an account and 
>password that is supplied when using mysql-front to connect to his 
>database.

Does mysql-front encrypt the password before it travels the net?




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] To
contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread Egan

On Fri, 13 Jul 2001 11:15:52 +0100, "Steve Brett"
<[EMAIL PROTECTED]> wrote:

>one of the guys i work for has an account with a service provider that gives
>mysql databases as part of his package. he has an account and password that
>is supplied when using mysql-front to connect to his database.

Does mysql-front encrypt the password before it travels the net?




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




AW: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread Sebastian Stadtlich


> > one, but postgresql is 5432) and therefore where you are is not an
> > issue.
> 
> Well, the issue is, that normally, connects to mysql are NOT 
> allowed from any arbitrary host.  Normally, in safe setups, 
> network connections to mysql are not possible.  And if they 
> are, you need to specify a ip from which connects are allowed.

Hi

as it happens i'm just installing my webserver...
i'd like to set it up just like that, but don't know how..
of cause i set it in mysql, but i don't trust mysql,
so it'd like linux ( redhat 7.1) take care of that .
all connections just from localip or my STATIC work ip

could you/or someone help?

> 
> -- 
> Homepage:http://www.digitalprojects.com   |   
> http://www.iso-top.de
> iso-top.de - Die günstige Art an Linux Distributionen zu kommen
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: 
> [EMAIL PROTECTED]
> 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread Steve Brett

> this should be set up by your isp though so as part of a mysql package

> you'd get this type of access to your db's

Well, my point was, that it's normally not setup as most users don't have
static ip's and allowing connects from any ip (even allowing net connects at
all) is/can/might be a security hole. That's why most (? well, all that I
know at least) ISPs (? web hosters fits better - what does the ISP have to
do with this?) do not allow net connects.

--

are we talking about the same thing ?

one of the guys i work for has an account with a service provider that gives
mysql databases as part of his package. he has an account and password that
is supplied when using mysql-front to connect to his database.

i do not have a static ip, i connect through his username and password and
am then routed to his database. the ip i come from is not relevant.

where is the problem ?



Steve






-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread Steve Brett

> -Original Message-

> From: Alexander Skwar [mailto:[EMAIL PROTECTED]]

> Sent: 13 July 2001 10:57

> To: Steve Brett; Alexander Skwar; Steve Brett; Matthew Loff; Steve

> Brett; 'Steph'; [EMAIL PROTECTED]

> Subject: RE: [PHP] Alternative to phpMyAdmin

>

>

> > i'm sorry but i seem to be completely missing your point.

> >

> > mysql accepts incoming requests on a specific socket (can't

> remember

>

> You mean "port", don't you?

>

i do indeed. gess who's psending most of his time at the minute socket
programming :-)

> > one, but postgresql is 5432) and therefore where you are is not an

> > issue.

>

> Well, the issue is, that normally, connects to mysql are NOT

> allowed from any arbitrary host. Normally, in safe setups,

> network connections to mysql are not possible. And if they

> are, you need to specify a ip from which connects are allowed.

>

this should be set up by your isp though so as part of a mysql package you'd
get this type of access to your db's

Steve

> --

> Homepage: http://www.digitalprojects.com |

> http://www.iso-top.de

> iso-top.de - Die günstige Art an Linux Distributionen zu kommen

>

"Alexander Skwar" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > i'm sorry but i seem to be completely missing your point.
>
> Yeah, seems like so :)
>
> >
> > mysql accepts incoming requests on a specific socket (can't remember
>
> You mean "port", don't you?
>
> > one, but postgresql is 5432) and therefore where you are is not an
> > issue.
>
> Well, the issue is, that normally, connects to mysql are NOT allowed from
any arbitrary host.  Normally, in safe setups, network connections to mysql
are not possible.  And if they are, you need to specify a ip from which
connects are allowed.
>
> --
> Homepage:http://www.digitalprojects.com   |   http://www.iso-top.de
> iso-top.de - Die günstige Art an Linux Distributionen zu kommen



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread Alexander Skwar

> i'm sorry but i seem to be completely missing your point.

Yeah, seems like so :)

> 
> mysql accepts incoming requests on a specific socket (can't remember 

You mean "port", don't you?

> one, but postgresql is 5432) and therefore where you are is not an
> issue.

Well, the issue is, that normally, connects to mysql are NOT allowed from any 
arbitrary host.  Normally, in safe setups, network connections to mysql are not 
possible.  And if they are, you need to specify a ip from which connects are allowed.

-- 
Homepage:http://www.digitalprojects.com   |   http://www.iso-top.de
iso-top.de - Die günstige Art an Linux Distributionen zu kommen

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread Alexander Skwar

> i'm sorry but i seem to be completely missing your point.
> 
> mysql accepts incoming requests on a specific socket (can't remember 

You mean "port", don't you?

> one, but postgresql is 5432) and therefore where you are is not an
> issue.

Well, the issue is, that normally, connects to mysql are NOT allowed from any 
arbitrary host.  Normally, in safe setups, network connections to mysql are not 
possible.  And if they are, you need to specify a ip from which connects are allowed.

-- 
Homepage:http://www.digitalprojects.com   |   http://www.iso-top.de
iso-top.de - Die günstige Art an Linux Distributionen zu kommen

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread Steve Brett

i'm sorry but i seem to be completely missing your point.

mysql accepts incoming requests on a specific socket (can't remember which
one, but postgresql is 5432) and therefore where you are is not an issue.

i administer databases via a modem connection that sit on servers somewhere
in the states.
i install mysql and php in windows and then develop at home, then i update
the live db throught mysql-front.

Steve

> -Original Message-
> From: Alexander Skwar [mailto:[EMAIL PROTECTED]]
> Sent: 13 July 2001 10:15
> To: Steve Brett; Alexander Skwar; Matthew Loff; Steve Brett; 'Steph';
> [EMAIL PROTECTED]
> Subject: RE: [PHP] Alternative to phpMyAdmin
> 
> 
> > if you install mysql on a windoze machine then you can 
> administer ANY > mysql database going through the socket.
> 
> Okay, for a development this may be fine, but I still fail to 
> see how a tool that runs on your own computer (no matter if 
> it's a Windows tool, or a Linux tool) can help you administer 
> databases which are not on the same computer (unless the 
> mysql database on the providers server can be contacted from 
> any machine and not just from "localhost").
> 
> -- 
> Homepage:http://www.digitalprojects.com   |   
> http://www.iso-top.de
> iso-top.de - Die günstige Art an Linux Distributionen zu kommen
> 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread Alexander Skwar

> if you install mysql on a windoze machine then you can administer ANY > mysql 
>database going through the socket.

Okay, for a development this may be fine, but I still fail to see how a tool that runs 
on your own computer (no matter if it's a Windows tool, or a Linux tool) can help you 
administer databases which are not on the same computer (unless the mysql database on 
the providers server can be contacted from any machine and not just from "localhost").

-- 
Homepage:http://www.digitalprojects.com   |   http://www.iso-top.de
iso-top.de - Die günstige Art an Linux Distributionen zu kommen

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-13 Thread Steve Brett

if you install mysql on a windoze machine then you can administer ANY mysql
database going through the socket.

i do it all the time.


Steve

> -Original Message-
> From: Alexander Skwar [mailto:[EMAIL PROTECTED]]
> Sent: 12 July 2001 19:15
> To: Matthew Loff
> Cc: 'Steve Brett'; 'Steph'; [EMAIL PROTECTED]
> Subject: Re: [PHP] Alternative to phpMyAdmin
> 
> 
> So sprach »Matthew Loff« am 2001-07-12 um 14:07:16 -0400 :
> > 
> > I second that recommendation-- MySQL-Front is downright excellent!
> > 
> > http://www.mysqlfront.de/
> 
> Well, but how is that going to work, if Steph wants to manage his
> databases on his providers server?
> 
> Besides, mysqlfront is a Windows program...
> 
> Alexander Skwar
> -- 
> How to quote: http://learn.to/quote (german) 
> http://quote.6x.to (english)
> Homepage: http://www.digitalprojects.com   |   
> http://www.iso-top.de
>iso-top.de - Die günstige Art an Linux Distributionen zu kommen
>   Uptime: 23 hours 13 minutes
> 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-12 Thread Matthew Loff


Same here... I run MySQL on Win2k as well as Linux machines, and use
Mysql-Front for things like table creation, user management, etc.  

It's also a great tool for EXPLAINing massive queries to find the most
efficient.



-Original Message-
From: scott [gts] [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, July 12, 2001 2:17 PM
To: php
Subject: RE: [PHP] Alternative to phpMyAdmin


i manage the production mysql database on a linux server
from my windows desktop at work

it's an extremely nice program.  :)

many compliments to the authour, if he reads this list.

> -Original Message-
> From: Alexander Skwar [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, July 12, 2001 2:15 PM
> To: Matthew Loff
> Cc: 'Steve Brett'; 'Steph'; [EMAIL PROTECTED]
> Subject: Re: [PHP] Alternative to phpMyAdmin
>
>
> So sprach »Matthew Loff« am 2001-07-12 um 14:07:16 -0400 :
> >
> > I second that recommendation-- MySQL-Front is downright excellent!
> >
> > http://www.mysqlfront.de/
>
> Well, but how is that going to work, if Steph wants to manage his 
> databases on his providers server?
>
> Besides, mysqlfront is a Windows program...
>
> Alexander Skwar
> --
> How to quote: http://learn.to/quote (german) http://quote.6x.to
(english)
> Homepage: http://www.digitalprojects.com   |
http://www.iso-top.de
>iso-top.de - Die günstige Art an Linux Distributionen zu kommen
>   Uptime: 23 hours 13 minutes
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED] To 
> contact the list administrators, e-mail: [EMAIL PROTECTED]
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] To
contact the list administrators, e-mail: [EMAIL PROTECTED]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-12 Thread scott [gts]

i manage the production mysql database on a linux server
from my windows desktop at work

it's an extremely nice program.  :)

many compliments to the authour, if he reads this list.

> -Original Message-
> From: Alexander Skwar [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, July 12, 2001 2:15 PM
> To: Matthew Loff
> Cc: 'Steve Brett'; 'Steph'; [EMAIL PROTECTED]
> Subject: Re: [PHP] Alternative to phpMyAdmin
>
>
> So sprach »Matthew Loff« am 2001-07-12 um 14:07:16 -0400 :
> >
> > I second that recommendation-- MySQL-Front is downright excellent!
> >
> > http://www.mysqlfront.de/
>
> Well, but how is that going to work, if Steph wants to manage his
> databases on his providers server?
>
> Besides, mysqlfront is a Windows program...
>
> Alexander Skwar
> --
> How to quote: http://learn.to/quote (german) http://quote.6x.to (english)
> Homepage: http://www.digitalprojects.com   |   http://www.iso-top.de
>iso-top.de - Die günstige Art an Linux Distributionen zu kommen
>   Uptime: 23 hours 13 minutes
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-12 Thread Steph

After a little investigation, I figured out what was wrong - for whatever
reason the server is requiring /index.php as part of the url. But thanks
guys, I'll definitely look into MYSQL- Front!!

-Original Message-
From: Matthew Loff [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 12, 2001 11:07 AM
To: 'Steve Brett'; 'Steph'; [EMAIL PROTECTED]
Subject: RE: [PHP] Alternative to phpMyAdmin



I second that recommendation-- MySQL-Front is downright excellent!

http://www.mysqlfront.de/


-Original Message-
From: Steve Brett [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 12, 2001 6:47 AM
To: Steph; [EMAIL PROTECTED]
Subject: RE: [PHP] Alternative to phpMyAdmin


mysql front is by far my favourite

available from mysql download section.

Steve

> -Original Message-
> From: Steph [mailto:[EMAIL PROTECTED]]
> Sent: 12 July 2001 05:01
> To: [EMAIL PROTECTED]
> Subject: [PHP] Alternative to phpMyAdmin
>
>
> Hi all! I love phpMyAdmin, just makes life so easy :) But I
> just moved my site, and phpMyAdmin isnt working on my server
> yet, so does any one have any solid alternatives that I can install??
>
> Thanks, Steph
>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] To
contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Alternative to phpMyAdmin

2001-07-12 Thread Alexander Skwar

So sprach »Matthew Loff« am 2001-07-12 um 14:07:16 -0400 :
> 
> I second that recommendation-- MySQL-Front is downright excellent!
> 
> http://www.mysqlfront.de/

Well, but how is that going to work, if Steph wants to manage his
databases on his providers server?

Besides, mysqlfront is a Windows program...

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
Uptime: 23 hours 13 minutes

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Alternative to phpMyAdmin

2001-07-12 Thread Clayton Dukes

I'd like to cast my vote for Webmin :-)
www.webmin.com


Clayton Dukes
CCNA, CCDA, CCDP, CCNP
(c) 904.477.7825
(h) 904.292.1881
Download Free Essays, Term Papers and Cisco Training from http://www.gdd.net


- Original Message -
From: "Matthew Loff" <[EMAIL PROTECTED]>
To: "'Steve Brett'" <[EMAIL PROTECTED]>; "'Steph'"
<[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, July 12, 2001 2:07 PM
Subject: RE: [PHP] Alternative to phpMyAdmin


>
> I second that recommendation-- MySQL-Front is downright excellent!
>
> http://www.mysqlfront.de/
>
>
> -Original Message-
> From: Steve Brett [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, July 12, 2001 6:47 AM
> To: Steph; [EMAIL PROTECTED]
> Subject: RE: [PHP] Alternative to phpMyAdmin
>
>
> mysql front is by far my favourite
>
> available from mysql download section.
>
> Steve
>
> > -----Original Message-
> > From: Steph [mailto:[EMAIL PROTECTED]]
> > Sent: 12 July 2001 05:01
> > To: [EMAIL PROTECTED]
> > Subject: [PHP] Alternative to phpMyAdmin
> >
> >
> > Hi all! I love phpMyAdmin, just makes life so easy :) But I
> > just moved my site, and phpMyAdmin isnt working on my server
> > yet, so does any one have any solid alternatives that I can install??
> >
> > Thanks, Steph
> >
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED] To
> contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-12 Thread Matthew Loff


I second that recommendation-- MySQL-Front is downright excellent!

http://www.mysqlfront.de/


-Original Message-
From: Steve Brett [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, July 12, 2001 6:47 AM
To: Steph; [EMAIL PROTECTED]
Subject: RE: [PHP] Alternative to phpMyAdmin


mysql front is by far my favourite

available from mysql download section.

Steve

> -Original Message-
> From: Steph [mailto:[EMAIL PROTECTED]]
> Sent: 12 July 2001 05:01
> To: [EMAIL PROTECTED]
> Subject: [PHP] Alternative to phpMyAdmin
> 
> 
> Hi all! I love phpMyAdmin, just makes life so easy :) But I
> just moved my site, and phpMyAdmin isnt working on my server 
> yet, so does any one have any solid alternatives that I can install??
> 
> Thanks, Steph
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] To
contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Alternative to phpMyAdmin

2001-07-12 Thread Henrik Hansen

[EMAIL PROTECTED] (Steve Brett) wrote:

 > mysql front is by far my favourite
 > 
 > available from mysql download section.

or mysqlfront.de

-- 
Henrik Hansen

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] Alternative to phpMyAdmin

2001-07-12 Thread Steve Brett

mysql front is by far my favourite

available from mysql download section.

Steve

> -Original Message-
> From: Steph [mailto:[EMAIL PROTECTED]]
> Sent: 12 July 2001 05:01
> To: [EMAIL PROTECTED]
> Subject: [PHP] Alternative to phpMyAdmin
> 
> 
> Hi all! I love phpMyAdmin, just makes life so easy :) But I 
> just moved my site, and phpMyAdmin isnt working on my server 
> yet, so does any one have any solid alternatives that I can install??
> 
> Thanks, Steph
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Alternative to phpMyAdmin

2001-07-11 Thread Steph

Andrea ,

Thanks for the feedback. Actually it doesnt work as far as how my host set
it up. I just get page cannot be displayed, and have been told by my host
that they dont have it working on the server yet. But Chris Lott (fellow PHP
lister) suggested I install it myself, which I may just go ahead and try.


Steph

- Original Message -
From: "Andras Kende" <[EMAIL PROTECTED]>
To: "Steph" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Wednesday, July 11, 2001 10:52 PM
Subject: Re: [PHP] Alternative to phpMyAdmin


> Steph,
>
> This one is cgi based and works well too..
> http://www.gossamer-threads.com/scripts/mysqlman/index.htm
>
> Why phpMyAdmin doesn't work on the new server? maybe you need newer
> development versions?
>
>
> Andras
>
> - Original Message -
> From: "Steph" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, July 11, 2001 9:00 PM
> Subject: [PHP] Alternative to phpMyAdmin
>
>
> Hi all! I love phpMyAdmin, just makes life so easy :) But I just moved my
> site, and phpMyAdmin isnt working on my server yet, so does any one have
any
> solid alternatives that I can install??
>
> Thanks, Steph
>
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Alternative to phpMyAdmin

2001-07-11 Thread Andras Kende

Steph,

This one is cgi based and works well too..
http://www.gossamer-threads.com/scripts/mysqlman/index.htm

Why phpMyAdmin doesn't work on the new server? maybe you need newer
development versions?


Andras

- Original Message -
From: "Steph" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, July 11, 2001 9:00 PM
Subject: [PHP] Alternative to phpMyAdmin


Hi all! I love phpMyAdmin, just makes life so easy :) But I just moved my
site, and phpMyAdmin isnt working on my server yet, so does any one have any
solid alternatives that I can install??

Thanks, Steph



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Alternative to phpMyAdmin

2001-07-11 Thread Steph

Hi all! I love phpMyAdmin, just makes life so easy :) But I just moved my site, and 
phpMyAdmin isnt working on my server yet, so does any one have any solid alternatives 
that I can install??

Thanks, Steph