[PHP] phpMyAdmin to output CSV to excel (including fieldnames)

2003-06-16 Thread J J
I see all the options in phpMyAdmin for CSV/excel output but I can't get it to export the fieldnames, headers as well. It'd be nice to have it automatically do that into excel so the output is easier to follow and provide to someone else. Am I just missing the option in phpMyAdmin or does it not

Re: [PHP] phpMyAdmin to output CSV to excel (including fieldnames)

2003-06-16 Thread Chris Hayes
At 21:33 16-6-2003, you wrote: I see all the options in phpMyAdmin for CSV/excel output but I can't get it to export the fieldnames, headers as well. It'd be nice to have it automatically do that into excel so the output is easier to follow and provide to someone else. Am I just missing the option

Re: [PHP] phpmyadmin duplication of sql

2003-02-25 Thread David Eisenhart
have you attempted to simply create the table and column using the sql text box (ie not using the create table interface)? eg pasting and submitting something like: CREATE TABLE t2 ( y varchar(5) ) TYPE=MyISAM; (I appreciate this does not address the reason behind the actual problem you are

[PHP] phpmyadmin duplication of sql

2003-02-24 Thread Michael Gaab
i am using the phpmyadmin interface to develop a small web based application. when i create a table i get the following error. for some reason the query inserts a duplicate. any help appreciated, mike Error SQL-query : CREATE TABLE `t2` ( `y` VARCHAR( 5 ) NOT NULL , `y` VARCHAR( 5 ) NOT

Re: [PHP] phpmyadmin duplication of sql

2003-02-24 Thread Daniel Guerrier
Duplicate column name 'y' Back It means what it said. You are trying to create a table with two columns with the same name. --- Michael Gaab [EMAIL PROTECTED] wrote: i am using the phpmyadmin interface to develop a small web based application. when i create a table i get the following

Re: [PHP] phpmyadmin duplication of sql

2003-02-24 Thread Michael Gaab
Daniel Guerrier [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Duplicate column name 'y' Back It means what it said. You are trying to create a table with two columns with the same name. no i use the textfields presented with the interface. i create a new table with 1 field and

[PHP] PhpMyADmin Help

2003-02-04 Thread Pushpinder Singh Garcha
Hello , I am using PhpMyAdmin to control my MySQL Database. Untill now I had been using the Local Apache webserver to test my scripts, so I had installed PhpMyAdmin in the 'Sites' Folder of my Mac. Now I need to beta test the Application on the Live Server. Do I need to upload PhpMyAdmin on

Re: [PHP] phpMyAdmin for Microsoft SQL

2003-01-28 Thread Maxim Maletsky
There is nothing for MS SQL that I know. phpMyAdmin was used for mySQL initially and then some volunteers like you made postreSQL and Oracle versions of it. So, you might want to try one on your own on SourceForge :) -- Maxim Maletsky [EMAIL PROTECTED] Joshua E Minnie [EMAIL PROTECTED]

Re: [PHP] phpMyAdmin for Microsoft SQL

2003-01-28 Thread Joshua E Minnie
I might just have to do that, thanks. Maxim Maletsky wrote: There is nothing for MS SQL that I know. phpMyAdmin was used for mySQL initially and then some volunteers like you made postreSQL and Oracle versions of it. So, you might want to try one on your own on SourceForge :) -- Maxim

[PHP] phpMyAdmin for Microsoft SQL

2003-01-27 Thread Joshua E Minnie
Hey all, Does any body know of anything similar to phpMyAdmin for MS SQL? I have been doing some googling and haven't come across anything that would help me out. I have also checked out www.sourceforge.net and can't seem to come across anything either. I am looking for something that will

[PHP] phpMyAdmin : password and user (Help)

2002-12-01 Thread Iguider
Hi Please I need a help, I used to work with asp and now I am migrating to php, my site web works perfectly on my PC (windows). I am runing phpMyAdmin 2.2.6, and easyphp on local machine . when my host give me a username and password, I want to change the file phpMyAdmin/config.inc.php from

Re: [PHP] phpMyAdmin : password and user (Help)

2002-12-01 Thread Evan Nemerson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Try changing the username from username to [EMAIL PROTECTED] On Sunday 01 December 2002 01:21 pm, Iguider wrote: Hi Please I need a help, I used to work with asp and now I am migrating to php, my site web works perfectly on my PC (windows). I am

Re: [PHP] phpMyAdmin 2.2.6

2002-11-14 Thread Maxim Maletsky
On Sun, 12 Nov 2000 22:25:59 - Iguider [EMAIL PROTECTED] wrote: I am running normally a phpMyAdmin 2.2.6, until yesterday it shows me : So it works now? I will assume no... Describe your system to the list and what could have possibly be changed yesterday. You might have an solution soon.

[PHP] phpMyAdmin Help

2002-11-13 Thread Pushpinder Sngh Garcha
Hi All, I am running PHP and MySQL on Jaguar Mac OS. I have setup the phpMyAdmin to run on the local host, and I also have my MySQL Database up and ready. On the main control panel of phpMyAdmin I am able to see the databases that I have created using the sheel prompt. But when I try to access

[PHP] phpMyAdmin 2.2.6

2002-11-12 Thread Iguider
Hi I am running normally a phpMyAdmin 2.2.6, until yesterday it shows me : Host 'localhost' is not allowed to connect to this MySQL server please help

Re: [PHP] phpMyAdmin please help

2002-11-12 Thread Iguider
Message - From: John Nichel [EMAIL PROTECTED] To: Iguider [EMAIL PROTECTED] Cc: PHP List [EMAIL PROTECTED] Sent: Tuesday, November 12, 2002 12:20 AM Subject: Re: [PHP] phpMyAdmin please help See below Iguider wrote: in my dtabase.php : $dbHost = ; $dbUser = Amazigh; $dbPassword

[PHP] phpMyAdmin please help

2002-11-11 Thread Iguider
Hi I have a furom working under php 4.0 and when I upgrade it to php 4.2 by installing the new version of easyphp 1.6.0.0 . the new phpMyAdmin is 2.2.6 . when I run the forum or I tried to re-create a tables in mySQL database with a install.php it shows me the following errors : Warning:

Re: [PHP] phpMyAdmin please help

2002-11-11 Thread John Nichel
Look at the config.inc.php file in the phpMyAdmin install directory. Iguider wrote: Hi I have a furom working under php 4.0 and when I upgrade it to php 4.2 by installing the new version of easyphp 1.6.0.0 . the new phpMyAdmin is 2.2.6 . when I run the forum or I tried to re-create a tables in

Re: [PHP] phpMyAdmin please help

2002-11-11 Thread Stephen
You may also want to check your forum's database.php after checking the phpMyAdmin's config.inc.php. - Original Message - From: John Nichel [EMAIL PROTECTED] To: Iguider [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, November 11, 2002 4:47 PM Subject: Re: [PHP] phpMyAdmin please

Re: [PHP] phpMyAdmin please help

2002-11-11 Thread Iguider
' auth_type) $cfgServers[$i]['only_db'] = ''; // If set to a db-name, only thanks - Original Message - From: Stephen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: PHP List [EMAIL PROTECTED] Sent: Monday, November 11, 2002 10:14 PM Subject: Re: [PHP] phpMyAdmin please help You

Re: [PHP] phpMyAdmin please help

2002-11-11 Thread Stephen
Your username and passwords are different. Try changing the forum's name and password to root for user and leave password blank. - Original Message - From: Iguider [EMAIL PROTECTED] To: PHP List [EMAIL PROTECTED] Sent: Monday, November 11, 2002 5:41 PM Subject: Re: [PHP] phpMyAdmin

Re: [PHP] phpMyAdmin please help

2002-11-11 Thread John Nichel
: PHP List [EMAIL PROTECTED] Sent: Monday, November 11, 2002 10:14 PM Subject: Re: [PHP] phpMyAdmin please help You may also want to check your forum's database.php after checking the phpMyAdmin's config.inc.php. - Original Message - From: John Nichel [EMAIL PROTECTED] To: Iguider

[PHP] Phpmyadmin HELP!!!

2002-11-03 Thread Rodrigo de Oliveira Costa
Hi people, After I installed phpmyadmin on my computer that runs an Apache I've worked almost everything out. The only problem I seem to have is that when I create a Database I can't put more than 8 columns and if I do it simply doesnt accept it. Another problem that it looks like I'm having

Re: [PHP] Phpmyadmin HELP!!!

2002-11-03 Thread Jason Wong
On Monday 04 November 2002 07:16, Rodrigo de Oliveira Costa wrote: Hi people, After I installed phpmyadmin on my computer that runs an Apache I've worked almost everything out. The only problem I seem to have is that when I create a Database I can't put more than 8 columns and if I do it

[PHP] PhpMyAdmin Help Needed

2002-10-16 Thread Pushpinder Singh Garcha
Hi I am wanting to use PhpMyAdmin for my project . I am developing using PHP and MySQl and the OS is Jaguar I have downloaded the latest version of phpmyadmin and have made necessary changes in the 'config.inc.php' file When I try to access PhpMyAdmin using

Re: [PHP] PhpMyAdmin Help Needed

2002-10-16 Thread .: B i g D o g :.
What web server are u using? If you are using apache you need to make sure you have the user directive set up properly for this. Plus, in the user directory u need to have the appropriate directory too. By default apache has it set to look for public_html... So in the user directory you would

Re: [PHP] PhpMyAdmin Help Needed

2002-10-16 Thread Brad Bonkoski
sounds like an apache config problem to me, if it is not even getting there... perhaps you should check the httpd.conf file to look into the UserDir settings to make sure the path is a web accessible path. -Brad Pushpinder Singh Garcha wrote: Hi I am wanting to use PhpMyAdmin for my project

Re: [PHP] PhpMyAdmin Help Needed

2002-10-16 Thread Marco Tabini
Hi, This doesn't seem to be a PHP error at all, but rather Apache telling you that it's unable to find your files. Are you sure you're pointing your browser to the correct location? Try putting a simple HTML file in your PHPMyAdmin directory and calling that one up. If you still get an error,

Re: [PHP] PhpMyAdmin Help Needed

2002-10-16 Thread Timothy Hitchens
Try something for me change the localhost to 127.0.0.1 Also look at the public_html settings for each user... Timothy Hitchens (HiTCHO) [EMAIL PROTECTED] Pushpinder Singh Garcha wrote: Hi I am wanting to use PhpMyAdmin for my project . I am developing using PHP and MySQl and the OS is

Re: [PHP] PhpMyAdmin Help Needed

2002-10-16 Thread Maxim Maletsky
On Wed, 16 Oct 2002 18:08:30 -0400 Pushpinder Singh Garcha [EMAIL PROTECTED] wrote: Hi I am wanting to use PhpMyAdmin for my project . I am developing using PHP and MySQl and the OS is Jaguar I have downloaded the latest version of phpmyadmin and have made necessary changes in the

Re: [PHP] PhpMyAdmin Help Needed

2002-10-16 Thread Stuart
On Wednesday, Oct 16, 2002, at 23:08 Europe/London, Pushpinder Singh Garcha wrote: I am wanting to use PhpMyAdmin for my project . I am developing using PHP and MySQl and the OS is Jaguar I have downloaded the latest version of phpmyadmin and have made necessary changes in the

[PHP] PhpMyAdmin and PHP4.2.* Too many I/Os

2002-09-10 Thread Jean-Pierre Arneodo
Hi, I have some troubles with PhpMyAdmin and PHP4.2.* I experimented these couples of installations: PhpMyAdmin / PHP 2.2.6 / 4.1.2 2.2.7pl1 / 4.1.2 2.3.0 / 4.1.2 2.2.6 / 4.2.1 2.2.7pl1 / 4.2.1 2.3.0 / 4.2.1 2.2.6 / 4.2.3 2.2.7pl1 / 4.2.3 2.3.0 / 4.2.3 with MySQL v3.23.49 on RedHat7.2 PhpMyAdmin

[PHP] phpMyAdmin

2002-08-21 Thread Steve Jackson
Is it possible to use phpMyAdmin to add new databases (not tables whole databases) to my website? I ask because currently my host has provided me with one database and I don't want to mix database tables when adding new features (such as shopping carts and bulletin boards)? I am new to MySQL and

Re: [PHP] phpMyAdmin

2002-08-21 Thread @ Edwin
All depends on your host and how phpMyAdmin was configured. It's better to ask them directly... - E Is it possible to use phpMyAdmin to add new databases (not tables whole databases) to my website? I ask because currently my host has provided me with one database and I don't want to mix

RE: [PHP] phpMyAdmin

2002-08-21 Thread Michael Egan
Jackson [mailto:[EMAIL PROTECTED]] Sent: 20 August 2002 23:35 To: MySQL General Mailing list; PHP General Subject: [PHP] phpMyAdmin Is it possible to use phpMyAdmin to add new databases (not tables whole databases) to my website? I ask because currently my host has provided me with one database

Re: [PHP] phpMyAdmin is this possible

2002-08-20 Thread Adam Williams
I always create a database by hand. On the console type: mysql -u root -p (It will prompt you for the mysql superuser's password. Then run: CREATE DATABASE db_name_here; Then you would use the grant statement accordly to give users permissions to it. Adam On Tue,

[PHP] phpMyAdmin is this possible

2002-08-20 Thread Steve Jackson
I am new to MySQL and PHP. Having looked at PHPMyAdmin the GUI I was wondering if it's possible to create a new database within the system? If so what are the commands? I ask because I only have one database on my server and don't want to populate it with different tables, I'd rather have

RE: [PHP] phpMyAdmin is this possible

2002-08-20 Thread Steve Bradwell
Subject: [PHP] phpMyAdmin is this possible I am new to MySQL and PHP. Having looked at PHPMyAdmin the GUI I was wondering if it's possible to create a new database within the system? If so what are the commands? I ask because I only have one database on my server and don't want to populate

[PHP] phpMyadmin with global variables off

2002-08-15 Thread Manuel Ochoa
I just installed phpMyadmin and I'm getting a message that I have an undefined variable. Is this because I have global variables off? Or in other words, should this program work the same regardless of whether global variables are on or off?

Re: [PHP] phpMyadmin with global variables off

2002-08-15 Thread Jason Wong
On Friday 16 August 2002 04:35, Manuel Ochoa wrote: I just installed phpMyadmin and I'm getting a message that I have an undefined variable. Is this because I have global variables off? Or in other words, should this program work the same regardless of whether global variables are on or off?

[PHP] phpMyAdmin and apqache 2.0.39 cache problems

2002-07-26 Thread electroteque
hi guys i am having major caching issues in phpMyAdmin when i moved to apache 2.0.39 has anyone else expeirence this ? its sending me round the bend , i cant view my mysql tables when i create them , i have to removed temp internet files and hit refresh to get them to view -- PHP General

[PHP] PHPMyAdmin interface

2002-07-24 Thread paulson
I have just recently just signed up for virtual hosting with a MySQL database. They do not have a PHPMyAdmin interface too access the database. All they have given me is my username and password and the server too login too. They suggested that I install PHPMyAdmin on my workstation and access

RE: [PHP] PHPMyAdmin interface

2002-07-24 Thread Brian V Bonini
instead. -B -- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 12:47 PM To: [EMAIL PROTECTED] Subject: [PHP] PHPMyAdmin interface I have just recently just signed up for virtual hosting with a MySQL database. They do

Re: [PHP] PHPMyAdmin interface

2002-07-24 Thread Martin Clifford
It's not normal that I've come across. Any hosting company I've ever dealt with (albeit not many, still three different ones), have all offered phpMyAdmin for interfacing with MySQL. And honestly, if the host REQUIRES you to do it, then they aren't worth hosting with. You'll find that will

Re: [PHP] PHPMyAdmin interface

2002-07-24 Thread Adam Voigt
PHPMyAdmin must be run a server, or alteast a workstation with PHP's MySQL extension installed on it, so are you sure he didn't mean, install PHPMyAdmin yourself on there server (the one with the account your paying for), in like your webdirectory (which is incredibly easy and simple to do)?

RE: [PHP] PHPMyAdmin interface

2002-07-24 Thread Mark Middleton
When they say, install it on your workstation are you sure they mean your desktop computer? phpMyAdmin is not a normal install on your desktop (unless you run a server with PHP and MySQL on your desktop, which you may do) It's very straight-forward to install phpMyAdmin on your web site. And

[PHP] phpmyadmin - moving data from one database to another

2002-06-18 Thread Phil Schwarzmann
The lazy and worthless a-holes at www.infinitehost.com (my host server) are forcing me to move all my MySQL data from one server to another because they are too dumb to fix it. I need to use phpmyadmin to move the data but i'm not %100 sure how to do it. There are some view dump commands. It

[PHP] PHPMyAdmin Alternative?

2002-06-08 Thread John Taylor-Johnston
Are there alternatives to PHPMyAdmin available? www.mysql.com/ is supposed to have one, no? -- John Taylor-Johnston - - Université de Sherbrooke: -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] PHPMyAdmin Alternative?

2002-06-08 Thread César L . Aracena
PROTECTED] Asunto: [PHP] PHPMyAdmin Alternative? Are there alternatives to PHPMyAdmin available? www.mysql.com/ is supposed to have one, no? -- John Taylor-Johnston -- --- - Université de Sherbrooke: -- PHP

Re: [PHP] PHPMyAdmin Alternative?

2002-06-08 Thread John Taylor-Johnston
This a binary? I was hoping for a web-based (PHP, Perl, ASP, etc.) alternative - like PHPMyAdmin - to analyse. César l . aracena wrote: Look in http://www.mysql.com/downloads/gui-mycc.html and download the The problem is that you can't issue multiple SQL queries, but that will be solved.

[PHP] ::::: PHPMYADMIN ERRORS-REFRESH. PHP4 or Apache 2?? :::::::

2002-05-11 Thread vins
My phpmyadmin scripts doesn't want to refresh. what could be the problem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PhpMyAdmin

2002-05-11 Thread Michigan Connect, LLC
I am using the latest phpMyAdmin and MySQL 2.23.37. I have installed and compiled it on a Sun Cobalt RAQ4r. I need to have it set up so that customers with different websites cannot see or work on other cutomers DB's, but each virtual site has its one phpMyAdmin So each user needs to have his

[PHP] phpMyAdmin Question

2002-05-06 Thread Scott Reismanis
Hey all, This question is mainly mySQL related however I believe the problem maybe caused by phpMyAdmin which is why I am posting it here. Anyhow does mySQL tables allow for a mix of char / varchar columns? Because if I try to create a table in phpMyAdmin for example: CREATE TABLE generic (

Re: [PHP] phpMyAdmin Question

2002-05-06 Thread 1LT John W. Holmes
http://www.mysql.com/documentation/mysql/bychapter/manual_Reference.html#Sil ent_column_changes ---John Holmes... - Original Message - From: Scott Reismanis [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 06, 2002 4:58 AM Subject: [PHP] phpMyAdmin Question Hey all

[PHP] phpMyAdmin

2002-05-03 Thread Rodrigo
Hi guys, I need some help using the phpMyAdmin, I'm trying to create a table with three fields, one for the indexing of the database, the second for the logins and the third for the password. I get the following doubts: On the table of the phpMyAdmin there are the following fields: A field

Re: [PHP] phpMyAdmin

2002-05-03 Thread Kevin Stone
: Friday, May 03, 2002 10:18 AM Subject: [PHP] phpMyAdmin Hi guys, I need some help using the phpMyAdmin, I'm trying to create a table with three fields, one for the indexing of the database, the second for the logins and the third for the password. I get the following doubts: On the table

Re: [PHP] phpMyAdmin

2002-05-03 Thread Mike Eheler
] Sent: Friday, May 03, 2002 10:18 AM Subject: [PHP] phpMyAdmin Hi guys, I need some help using the phpMyAdmin, I'm trying to create a table with three fields, one for the indexing of the database, the second for the logins and the third for the password. I get the following doubts

Re: [PHP] phpMyAdmin

2002-05-03 Thread Kevin Stone
Thanks for the tip Mike. -Kevin - Original Message - From: Mike Eheler [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 03, 2002 10:49 AM Subject: Re: [PHP] phpMyAdmin I've always found it's good to set numeric primary keys to UNSIGNED. Gives you a larger range, and it's

[PHP] phpMyAdmin

2002-05-03 Thread Rodrigo
Hi guys, I need to know the script to insert some fields into the database. Like this: I need to get from a form the email, login, password and store it on the database. I'd like to know how this script would be. Code is apreciated. ;) Thanks, Rodrigo

Re: [PHP] phpMyAdmin

2002-05-03 Thread Kevin Stone
an extremely well written book that is very easy to follow. It will get you started building dynamic websites with PHP and MySQL in no time. Best wishes, Kevin - Original Message - From: Rodrigo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 03, 2002 10:58 AM Subject: [PHP

Re: [PHP] phpMyAdmin

2002-05-03 Thread 1LT John W. Holmes
$result = mysql_query(INSERT INTO table (email, login, password) VALUES ('$email','$login','$password')); ---John Holmes... - Original Message - From: Rodrigo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 03, 2002 12:58 PM Subject: [PHP] phpMyAdmin Hi guys, I need to know

[PHP] phpMyAdmin protection

2002-04-15 Thread Mantas Kriauciunas
Hey PHP General List, Can anybody point me to tutorial or real good explanation site how to keep Http://localhost/phpmyadmin off for other users. I am using it to help me with MySQL database but other peaople can access it. I know there is something with .httacces but i dont know

RE: [PHP] phpMyAdmin protection

2002-04-15 Thread Brian V Bonini
.htaccess ;-) http://httpd.apache.org/docs-2.0/configuring.html#htaccess -B -Original Message- From: Mantas Kriauciunas [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 12:35 AM To: PHP General List Subject: [PHP] phpMyAdmin protection Hey PHP General List, Can

Re: [PHP] phpMyAdmin protection

2002-04-15 Thread Justin French
Actually the latest releases of phpMyAdmin come with options for password protecting the programs... it's really nice... they're doing htaccess without the .htaccess file (), plus three other forms of verification. Well worth checking out. There's a few lines in the config.inc.php file, and

Re: [PHP] phpMyAdmin protection

2002-04-15 Thread heinisch
At 14.04.2002 21:34, you wrote: Hey PHP General List, Can anybody point me to tutorial or real good explanation site how to keep Http://localhost/phpmyadmin off for other users. I am using it to help me with MySQL database but other peaople can access it. I know there is

[PHP] PHPMyAdmin: [PHP] From: Newman, using and ' or ` in My Sql

2002-03-16 Thread jtjohnston
The standard quote (') should be used to delimit string literals in MYSQL statements. Use it to surround strings you're inserting into or comparing against VARCHARs, CHARs, TEXTs, etc. $sql = UPDATE mytable SET name='Best Table Of All' WHERE id=3; That is ok if you call MySQL in your .php.

[PHP] phpMyAdmin

2002-03-11 Thread Chuck \PUP\ Payne
I have a client that has install phpMyAdmin but can't get into he gets this error; Error MySQL said: Access denied for user: 'root@localhost' (Using password: NO) Is there a way to get into if he knows the password? Chuck PUP Payne Sr. System Administrator GDI Engineering, Inc. -- PHP

Re: [PHP] phpMyAdmin

2002-03-11 Thread John S. Huggins
On Mon, 11 Mar 2002, Chuck PUP Payne wrote: -I have a client that has install phpMyAdmin but can't get into he gets this -error; - -Error -MySQL said: - - -Access denied for user: 'root@localhost' (Using password: NO) - - -Is there a way to get into if he knows the password? Well, yes. The

Re: [PHP] phpMyAdmin

2002-03-11 Thread Thomas Edison Jr.
With the phpMyAdmin, you get a Config.inc file. You will have to change the parameters (username, password, database) etc., in order to access your phpMyAdmin. T. Edison Jr. --- Chuck \PUP\ Payne [EMAIL PROTECTED] wrote: I have a client that has install phpMyAdmin but can't get into he gets

[PHP] phpMyAdmin Change Root pwd ... Now no access

2002-03-11 Thread Daniel Negron/KBE
OK, here its goes. I learned of this neat little app phpMyadmin added a password to root and now I get no access. checked the my.ini and php.ini for possible problems there. they are set with passwords to the root. both .ini's What am I missing here...should I juyst remove the password from

Re: [PHP] phpMyAdmin Change Root pwd ... Now no access

2002-03-11 Thread Greg Donald
On Mon, 11 Mar 2002, Daniel Negron/KBE wrote: OK, here its goes. I learned of this neat little app phpMyadmin added a password to root and now I get no access. checked the my.ini and php.ini for possible problems there. they are set with passwords to the root. both .ini's What am I missing

[PHP] phpmyadmin

2002-02-21 Thread jtjohnston
I know this is a bit off the wall for most, but for what purpose do you use phpmyadmin mysql? What are your projects? Does anyone know of any good articles that discuss databasing, PHP, MySQL and or PHPMyAdmin for academic purposes? I'm a university researcher and want to collect some data.

[PHP] phpmyadmin-mysql

2002-02-17 Thread jtjohnston
Hello, I'm looking for code to display all my mysql databases in a select. On change, I want to display all my tables in a select. Finally, on change, it has to display all record of the table selected: Print Record id YR AU BT 1 1997 Fee, Margery Writing Orality:

Re: [PHP] phpmyadmin-mysql

2002-02-17 Thread hugh danaher
: Sunday, February 17, 2002 7:34 PM Subject: [PHP] phpmyadmin-mysql Hello, I'm looking for code to display all my mysql databases in a select. On change, I want to display all my tables in a select. Finally, on change, it has to display all record of the table selected: Print Record

[PHP] phpMyAdmin problem...

2002-01-16 Thread Philip Jeffs
Hi, I've got a MySQL problem. I'm running MySQL on my local machine and my web server (housed elsewhere). I need to use phpMyAdmin to administer the databases on my local machine and my remote server. I've set the config in phpMyAdmin to connect to both servers, but when i try to administer

RE: [PHP] phpMyAdmin problem...

2002-01-16 Thread Kees Hoekzema
]] Sent: Wednesday, January 16, 2002 2:43 PM To: [EMAIL PROTECTED] Subject: [PHP] phpMyAdmin problem... Hi, I've got a MySQL problem. I'm running MySQL on my local machine and my web server (housed elsewhere). I need to use phpMyAdmin to administer the databases on my local machine

Re: [PHP] phpMyAdmin problem...

2002-01-16 Thread Philip Jeffs
I flushed the privileges and its worked! Thanks, Phil - Original Message - From: Kees Hoekzema [EMAIL PROTECTED] To: Philip Jeffs [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, January 16, 2002 2:04 PM Subject: RE: [PHP] phpMyAdmin problem... A couple of things: does

[PHP] phpmyadmin blob blues

2001-12-28 Thread Paul S.
I had been using blob for a lot of mysql text fields, even email address as well as other data. all of a sudden, it seems, instead of seeing and editting these blob values in phpmyadmin (i currently have 2.2.2) tables all i see in the fields is [BLOB] and I am ubnable to edit the fields. Does

Re: [PHP] phpmyadmin blob blues

2001-12-28 Thread Bas Jobsen
In config.inc.php: -- // In browse mode... $cfgShowBlob = FALSE; // display blob field contents -- Maybe put it on TRUE? Op vrijdag 28 december 2001 16:52, schreef Paul S.: I had been using blob for a lot of mysql text fields, even email address as well as other data. all of a

Re: [PHP] phpmyadmin blob blues

2001-12-28 Thread Paul S.
That is the one. Thanks. Diff than the previous phpmyadmin it appears, too. I'll read through all those parms. Bas Jobsen wrote: In config.inc.php: -- // In browse mode... $cfgShowBlob = FALSE; // display blob field contents -- Maybe put it on TRUE? Op vrijdag 28 december

[PHP] phpmyadmin is installed, now how to access it?

2001-10-28 Thread Chip
I just installed the FreeBSD port for PHPMyAdmin and was reading the docs on the php wizard site but cannot figure out how to actually access the interface. Is it through a particular port like webmin? Can some clue me in please? -- Chip W. -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] phpmyadmin is installed, now how to access it?

2001-10-28 Thread Jason Brooke
In your web browser like you would any other web interface on your machine jason - Original Message - From: Chip [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, October 28, 2001 4:39 PM Subject: [PHP] phpmyadmin is installed, now how to access it? I just installed the FreeBSD

Re: [PHP] phpmyadmin is installed, now how to access it?

2001-10-28 Thread Chip
On Saturday 27 October 2001 23:47, Peter wrote: Very easy. After I expanded the PhpMyAdmin files in the appropriate directory, which is...? I installed it into /usr/local/apache/htdocs/phpMyAdmin/ is that okay? It doesn't want to work correctly. I just set the appropriate server name,

Re: [PHP] phpmyadmin is installed, now how to access it?

2001-10-28 Thread Moody
I see all the files are name php3 rather than php. When I access the index.php3 of course it my browser doesn't know what to do so it asks if I want to download it. Sounds like you need to add .php3 to your AddType directive in the httpd.conf file i.e.the line in httpd.conf that says:

Re: [PHP] phpmyadmin is installed, now how to access it?

2001-10-28 Thread Chip
On Sunday 28 October 2001 15:52, Moody wrote: I see all the files are name php3 rather than php. When I access the index.php3 of course it my browser doesn't know what to do so it asks if I want to download it. Sounds like you need to add .php3 to your AddType directive in the httpd.conf

[PHP] phpMyAdmin problem that might have you fustered

2001-09-18 Thread Adam
I found that if you were trying to back up a database in this application, and you had a # mark anywhere on an entry, this would cause a fault when you tried to reload the script back into the sql statememnt. you will have to make a find and replace script on page to convert it to a different

[PHP] phpMyAdmin install error

2001-08-22 Thread Tom Beidler
I'm getting the following error with phpMyAdmin; Warning: MySQL Connection Failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) in /home/web/isp.com/public_html/dloc/admin/lib.inc.php on line 308 Error Any ideas where to start looking. All I've set in the

Re: [PHP] phpMyAdmin install error

2001-08-22 Thread Jay Paulson
- Original Message - From: Tom Beidler [EMAIL PROTECTED] To: php list [EMAIL PROTECTED] Sent: Wednesday, August 22, 2001 10:39 AM Subject: [PHP] phpMyAdmin install error I'm getting the following error with phpMyAdmin; Warning: MySQL Connection Failed: Can't connect to local MySQL server

Re: [PHP] phpMyAdmin install error

2001-08-22 Thread Kurth Bemis
ln in the command prompt if you are running on a linux box hope that helps.. jay - Original Message - From: Tom Beidler [EMAIL PROTECTED] To: php list [EMAIL PROTECTED] Sent: Wednesday, August 22, 2001 10:39 AM Subject: [PHP] phpMyAdmin install error I'm getting the following error

[PHP] phpMyAdmin No Error No Output

2001-07-15 Thread Prachait Saxena
HI, I had downloaded a new version 2.2 of phpMyAdmin from the site. and placed it on my site on the Internet. but i am getting no error and no output can any one tell me why this is happning .??? bye -- Prachait Saxena Offical ( [EMAIL PROTECTED] ) Personal ( [EMAIL PROTECTED] )

Re: [PHP] phpMyAdmin: dumping problem

2001-05-14 Thread bill
Hi Peter, I've had similar problems. I haven't found any easy way. Here's how I got around the problems. Upgrade to the latest version of phpMyadmin. Make sure magic_quotes is on (if it isn't, the program will warn you.) You may need to replace a single slash \ with a double slash \\ Use

[PHP] phpMyAdmin: dumping problem

2001-05-13 Thread PeterOblivion
i got a 1.21 txt file worth of backup data on my HD. I need to get it up and running on my new mysql server asap. 2 problems tho i dont have ftp or telnet access, and two phpMyAdmin always gives me a syntax error.. this is most likely because HTML is included in the contexs of the database.

[PHP] PHPMyAdmin local Windows/Apache question

2001-05-08 Thread TopFive
Does anyone have experience using PHPMyAdmin running on a local server under Windows NT/2000? I've installed it, but when I load the index.php, I get a lot of PHP code displaying in my browser where my list of databases and tables should be. Thanks in advance, Chris W. -- PHP General

RE: [PHP] PHPmyadmin

2001-05-07 Thread Ryan W. Zajicek
Richel [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 4:08 PM To: [EMAIL PROTECTED] Subject: [PHP] PHPmyadmin Can anyone please tell me how to load a structure and datadumpfile (*.sql) into an empty database by means of PHPMyadmin? (I know there is a separate forum for this, but either

RE: [PHP] PHPmyadmin

2001-05-07 Thread John Vanderbeck
PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] PHPmyadmin Theo, Make sure the database exists, then click on the database name on the left hand side of the screen. Now on the right hand side of the screen it should say something like no tables exist and below that you'll

RE: [PHP] PHPmyadmin

2001-05-07 Thread Jack Dempsey
http://www.phpwizard.net/projects/phpMyAdmin/ -Original Message- From: John Vanderbeck [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 5:21 PM To: Ryan W. Zajicek; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] PHPmyadmin I'm curious, Where can I get a copy

RE: [PHP] PHPmyadmin - problem remains

2001-05-07 Thread Theo Richel
disk (but this one doesn't know how to handle an sql file or create a table from it). Thanks for the input. Theo -Original Message- From: Ryan W. Zajicek [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 11:19 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] PHPmyadmin

[PHP] PHPmyadmin

2001-05-07 Thread Theo Richel
Can anyone please tell me how to load a structure and datadumpfile (*.sql) into an empty database by means of PHPMyadmin? (I know there is a separate forum for this, but either this is a stupid question or there is no one there who knows an answer, it stays silent). I know how to do it through

[PHP] phpMyAdmin user administration script for you

2001-04-30 Thread Ian LeBlanc
If any of you use phpMyAdmin a while back when the new version came out I designed a User Admin for it. Which makes adding new users and assigning them permissions a simple 3 second job You can check it out at http://www.2tonecafe.com/scripts/useradmin/ Regards, Ian LeBlanc Web Development

Re: [PHP] phpMyAdmin edit function not working

2001-03-18 Thread Oktay Altunergil
Message - From: "Robert Campbell" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, March 18, 2001 3:11 AM Subject: [PHP] phpMyAdmin edit function not working I've got mysql php running in a windows millenium system (yes, sad, I know), and I'm running phpmyadmin 2.1.0 Anyw

<    1   2   3   >