[PHP-DB] MySQL creating new tables using wrong engine...

2006-03-15 Thread Mark Benson

I have run into an issue where I keep getting InnoDB tables everytime I create 
a new table in PHPMyAdmin, and I want MyISAM tables. It's very annoying. Anyone 
got any suggestions as to what I might have done that made MySQL or PHPMyAdmin 
do this?

-- 
Mark Benson

http://homepage.mac.com/markbenson

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] MySQL creating new tables using wrong engine...

2006-03-15 Thread Adrian Bruce
--default-storage-engine option in your options file (my.ini) where 
engine is the the type of table engine you want to use, in your case MYISAM.


If you cant change that then specify the engine type every time you 
create a table:


create table table_name{
   .
} TYPE=myisam;

Regards
Ade

Mark Benson wrote:


I have run into an issue where I keep getting InnoDB tables everytime I create 
a new table in PHPMyAdmin, and I want MyISAM tables. It's very annoying. Anyone 
got any suggestions as to what I might have done that made MySQL or PHPMyAdmin 
do this?

 



--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] test

2006-03-15 Thread Paul Anderson
new user test

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] test

2006-03-15 Thread Paul Anderson
new user test 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] test

2006-03-15 Thread Paul Anderson
new user test

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Test

2006-03-15 Thread Paul Anderson
New user test 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Re: Test

2006-03-15 Thread João Cândido de Souza Neto
tested

Paul Anderson wrote:

 New user test

-- 
---
João Cândido de Souza Neto
Web Developer

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Unable to Send Mail

2006-03-15 Thread Paul Anderson
Please forgive me if this comes through twice.  I am a new subscriber and
the first send did not seem to work.

We recently moved all our websites to a new server using php 4.3.10.

We are having problem with ONE function.  Any time a php script or form is
supposed to send a response or email to us or a user, or  the mail is not
sent.  We have tried various formail.php versions, sendmail.php and written
our own most basic scripts.

Our php scripted calender program will not send confirmation, notices or
allow email questions to be sent to those that post events. All  other
functions work without problem.

Feedback forms do not send when SUBMITed.  We  see them come in to the
server but no mail is sent.  Like I said, we have used a wide variety of
formmail and sendmail and written our own barebones script but they will not
work.

What does not work on the new server with php 4.3.10 still works on the old
server with an earliver php 3 version.

Can anyout help with ideas what is wrong.  I think it is in the set up of
the php 4.3.10 but we can't find it if it is.

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Re: Unable to Send Mail

2006-03-15 Thread João Cândido de Souza Neto
Paul Anderson wrote:

I think that the first thing to be looked at is the server configuration. If
it doesn't work, ask to the server administrator to look at the mail log.
If the script send the e-mail but the smtp server don't do it, something
will be writted in the smtp log.

 Please forgive me if this comes through twice.  I am a new subscriber and
 the first send did not seem to work.
 
 We recently moved all our websites to a new server using php 4.3.10.
 
 We are having problem with ONE function.  Any time a php script or form is
 supposed to send a response or email to us or a user, or  the mail is not
 sent.  We have tried various formail.php versions, sendmail.php and
 written our own most basic scripts.
 
 Our php scripted calender program will not send confirmation, notices or
 allow email questions to be sent to those that post events. All  other
 functions work without problem.
 
 Feedback forms do not send when SUBMITed.  We  see them come in to the
 server but no mail is sent.  Like I said, we have used a wide variety of
 formmail and sendmail and written our own barebones script but they will
 not work.
 
 What does not work on the new server with php 4.3.10 still works on the
 old server with an earliver php 3 version.
 
 Can anyout help with ideas what is wrong.  I think it is in the set up of
 the php 4.3.10 but we can't find it if it is.

-- 
---
João Cândido de Souza Neto
Web Developer

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Unable to Send Mail

2006-03-15 Thread Andrew Darby
maybe it's due to register_globals being set to off:

http://www.phpnoise.com/tutorials/2/1

On 3/15/06, Paul Anderson [EMAIL PROTECTED] wrote:
 Please forgive me if this comes through twice.  I am a new subscriber and
 the first send did not seem to work.

 We recently moved all our websites to a new server using php 4.3.10.

 We are having problem with ONE function.  Any time a php script or form is
 supposed to send a response or email to us or a user, or  the mail is not
 sent.  We have tried various formail.php versions, sendmail.php and written
 our own most basic scripts.

 Our php scripted calender program will not send confirmation, notices or
 allow email questions to be sent to those that post events. All  other
 functions work without problem.

 Feedback forms do not send when SUBMITed.  We  see them come in to the
 server but no mail is sent.  Like I said, we have used a wide variety of
 formmail and sendmail and written our own barebones script but they will not
 work.

 What does not work on the new server with php 4.3.10 still works on the old
 server with an earliver php 3 version.

 Can anyout help with ideas what is wrong.  I think it is in the set up of
 the php 4.3.10 but we can't find it if it is.

 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Unable to Send Mail

2006-03-15 Thread João Cândido de Souza Neto
I agree.

Andrew Darby wrote:

 maybe it's due to register_globals being set to off:
 
 http://www.phpnoise.com/tutorials/2/1
 
 On 3/15/06, Paul Anderson [EMAIL PROTECTED] wrote:
 Please forgive me if this comes through twice.  I am a new subscriber and
 the first send did not seem to work.

 We recently moved all our websites to a new server using php 4.3.10.

 We are having problem with ONE function.  Any time a php script or form
 is
 supposed to send a response or email to us or a user, or  the mail is not
 sent.  We have tried various formail.php versions, sendmail.php and
 written our own most basic scripts.

 Our php scripted calender program will not send confirmation, notices or
 allow email questions to be sent to those that post events. All  other
 functions work without problem.

 Feedback forms do not send when SUBMITed.  We  see them come in to the
 server but no mail is sent.  Like I said, we have used a wide variety of
 formmail and sendmail and written our own barebones script but they will
 not work.

 What does not work on the new server with php 4.3.10 still works on the
 old server with an earliver php 3 version.

 Can anyout help with ideas what is wrong.  I think it is in the set up of
 the php 4.3.10 but we can't find it if it is.

 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
---
João Cândido de Souza Neto
Web Developer

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] WAMP

2006-03-15 Thread Kinfe Tadesse



Hello,

Can any one recommend me a well-tested package containing Apache, MySQL and 
PHP all in one for Windows?I want to use my computer as a client and a web 
server at the same time. Is there any problem with that?


Thank you very much.

Best regards,

Kinfe T.



Re: [PHP-DB] test

2006-03-15 Thread JupiterHost.Net



Paul Anderson wrote:
new user test 


please don't do tests to a public list, its spam

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Unable to Send Mail

2006-03-15 Thread JupiterHost.Net

We are having problem with ONE function.  Any time a php script or form is
supposed to send a response or email to us or a user, or  the mail is not
sent.  We have tried various formail.php versions, sendmail.php and written
our own most basic scripts.


This would be more appropiate for a general PHP list and not one that is 
PHP/Database specific.


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] WAMP

2006-03-15 Thread Philip Pryce
apache triad 2 is good,
http://apache2triad.net/
very well tested. but its rather large when you download it.
hope it helps.

--
~Philip Pryce


RE: [PHP-DB] WAMP

2006-03-15 Thread Hutchins, Richard
WAMP5. I use it myself.

http://www.en.wampserver.com/ 


Rich

-Original Message-
From: Philip Pryce [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 15, 2006 11:55 AM
To: php-db@lists.php.net
Subject: Re: [PHP-DB] WAMP

apache triad 2 is good,
http://apache2triad.net/
very well tested. but its rather large when you download it.
hope it helps.

--
~Philip Pryce

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] WAMP

2006-03-15 Thread Miles Thompson


No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.1.375 / Virus Database: 268.2.1/279 - Release Date: 3/10/2006

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] MySQL - Unable to run service

2006-03-15 Thread Ralph Brickley
I have been using MySQL for quite some time and am now running Server 4.1. I
have been developing custom web-based software for a customer and recently
moved their server to a different machine. I have everything running
smoothly EXCEPT for mySQL. Any time I try to start the service I get an
error:

Error 1067: Unable to start service on Local Computer.

 

Anyone have an idea about that? That user logged in is the comp
administrator.

 

 

Ralph E. Brickley

AE Security and Electronics

(503) 472-6439 / (877) 472-6439

(503) 519-3914 Cell

(503) 472-3570 Fax

[EMAIL PROTECTED]

 



[PHP-DB] Re: MySQL - Unable to run service

2006-03-15 Thread Adriaan van Natijne
Windows / Unix (/ Linux)?

Op Wed, 15 Mar 2006 10:34:42 -0800, schreef Ralph Brickley:

 I have been using MySQL for quite some time and am now running Server 4.1. I
 have been developing custom web-based software for a customer and recently
 moved their server to a different machine. I have everything running
 smoothly EXCEPT for mySQL. Any time I try to start the service I get an
 error:
 
 Error 1067: Unable to start service on Local Computer.
 
  
 
 Anyone have an idea about that? That user logged in is the comp
 administrator.
 
  
 
  
 
 Ralph E. Brickley
 
 AE Security and Electronics
 
 (503) 472-6439 / (877) 472-6439
 
 (503) 519-3914 Cell
 
 (503) 472-3570 Fax
 
 [EMAIL PROTECTED]

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] MySQL - Unable to run service

2006-03-15 Thread dpgirago

 I have been using MySQL for quite some time and am now running Server
4.1. I
 have been developing custom web-based software for a customer and
recently
 moved their server to a different machine. I have everything running
 smoothly EXCEPT for mySQL. Any time I try to start the service I get an
 error:

 Error 1067: Unable to start service on Local Computer.

 Anyone have an idea about that? That user logged in is the comp
 administrator.

Is this on Windows?

Did the service install OK?

Is this the message you get when you try net start mysql?

David

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] WAMP

2006-03-15 Thread Bastien Koert
Personally, while I appreciate the easiness of installing a package, I found 
upgrading the individual components (at least with easyPHP) an issue. It was 
more beneficial to learn to install each piece separately.


Bastien



From: Miles Thompson [EMAIL PROTECTED]
To: php-db@lists.php.net
Subject: Re: [PHP-DB] WAMP
Date: Wed, 15 Mar 2006 14:28:21 -0400



No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.1.375 / Virus Database: 268.2.1/279 - Release Date: 3/10/2006





--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] PHP/MySQL/Linux developer needed in Long Beach, CA

2006-03-15 Thread Christian Fea

Hello,

We're looking for a PHP developer to work on-site in Long Beach to  
start immediately.  Job description is below.


Thanks,

Christian


Internet Transaction Services, Inc. - An Internet Paymenet Processing  
company located in Long Beach, CA is looking to hire a contract PHP  
developer to work in our office for a 6 month project. This project  
will be helping us to expand on our risk management system. Possible  
travel to Holland may be required for training. We're looking for  
someone with 2 to 3 years PHP/MySQL/Linux experience. Please email  
your resume to [EMAIL PROTECTED] No third party or agency  
responses please. Looking to fill this position ASAP. This position  
pays $40 to $45 an hour to start with an increase in 60 days.


--
Christian Fea
CTO
Internet Transaction Services, Inc.
[EMAIL PROTECTED]

110 Pine Ave
Suite 1080
Long Beach, CA 90802

Office - 562-951-1122
Skype - christianfea
Yahoo - christianfea





[PHP-DB] Re: MySQL - Unable to run service

2006-03-15 Thread Nadim Attari
Hello,

I'm not being rude but it is a good thing to do before coming here:

http://www.google-is-my-best-friend.com (Jusk kidding...)

Here you go
http://www.google.com/search?hl=enq=%22Error+1067%22+%2B+mysqlbtnG=Search

Some picks:
- http://forums.mysql.com/read.php?11,11388,11388
- http://www.experts-exchange.com/Databases/Mysql/Q_21045378.html

And please, give more specific info about your problem...

Best Regards,
Nadim Attari
Alienworkers.com



Ralph Brickley wrote:
 I have been using MySQL for quite some time and am now running Server 4.1. I
 have been developing custom web-based software for a customer and recently
 moved their server to a different machine. I have everything running
 smoothly EXCEPT for mySQL. Any time I try to start the service I get an
 error:
 
 Error 1067: Unable to start service on Local Computer.
 
  
 
 Anyone have an idea about that? That user logged in is the comp
 administrator.
 
  
 
  
 
 Ralph E. Brickley
 
 AE Security and Electronics
 
 (503) 472-6439 / (877) 472-6439
 
 (503) 519-3914 Cell
 
 (503) 472-3570 Fax
 
 [EMAIL PROTECTED]

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Re: MySQL - Unable to run service

2006-03-15 Thread Nadim Attari
Another link:
http://sunsite.mff.cuni.cz/MIRRORS/ftp.mysql.com/doc/en/Windows_upgrading.html

Regards,
Nadim Attari
Alienworkers.com

Nadim Attari wrote:
 Hello,
 
 I'm not being rude but it is a good thing to do before coming here:
 
 http://www.google-is-my-best-friend.com (Jusk kidding...)
 
 Here you go
 http://www.google.com/search?hl=enq=%22Error+1067%22+%2B+mysqlbtnG=Search
 
 Some picks:
 - http://forums.mysql.com/read.php?11,11388,11388
 - http://www.experts-exchange.com/Databases/Mysql/Q_21045378.html
 
 And please, give more specific info about your problem...
 
 Best Regards,
 Nadim Attari
 Alienworkers.com

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Re: WAMP

2006-03-15 Thread Nadim Attari
Hello,

I use XAMPP locally to test my scripts.. i haven't tested it online.
Have a look: http://www.apachefriends.org

Regards,
Nadim Attari
Alienworkers.com

Kinfe Tadesse wrote:
 Hello,
  
 Can any one recommend me a well-tested package containing Apache, MySQL
 and PHP all in one for Windows? I want to use my computer as a client
 and a web server at the same time. Is there any problem with that?
  
  
 Thank you very much.
  
 Best regards,
  
 Kinfe T.

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php