From: shiplu on
You can consider XAMPP. (www.apachefriends.org/en/xampp.html)
It has everything in it.

Mysql server, Apache server, PHPMyAdmin, PHP, Perl and an FTP server
Just install it and its configured.

Just put your files in htdocs and they will be up and running.

I use this to package my intranet php application.


Shiplu Mokadd.im
My talks, http://talk.cmyweb.net
Follow me, http://twitter.com/shiplu
SUST Programmers, http://groups.google.com/group/p2psust
Innovation distinguishes bet ... ... (ask Steve Jobs the rest)
From: Ashley Sheridan on
On Wed, 2010-06-02 at 04:48 +0700, shiplu wrote:

> You can consider XAMPP. (www.apachefriends.org/en/xampp.html)
> It has everything in it.
>
> Mysql server, Apache server, PHPMyAdmin, PHP, Perl and an FTP server
> Just install it and its configured.
>
> Just put your files in htdocs and they will be up and running.
>
> I use this to package my intranet php application.
>
>
> Shiplu Mokadd.im
> My talks, http://talk.cmyweb.net
> Follow me, http://twitter.com/shiplu
> SUST Programmers, http://groups.google.com/group/p2psust
> Innovation distinguishes bet ... ... (ask Steve Jobs the rest)
>


He's got that much (with the exception of the FTP server) up and running
with EasyPHP. The issue he has now is getting his existing Java app to
use the MySQL server from EasyPHP to avoid conflicting ports from the
two MySQL systems installed. It can be run all as one with different
users, and might be better now asking a MySQL list, unless anyone on
here knows an easier way?

Thanks,
Ash
http://www.ashleysheridan.co.uk


From: Shreyas on
Since I have another Java app running and points to the same port 3306, when
I tried to configure with EasyPHP, I had a conflict.

How about configuring EasyPHP at a different port? In that ways, EasyPHP's
MYSQL and my external MySQL will never have a conflicting situation.

Does that make sense?

--Shreyas

On Wed, Jun 2, 2010 at 3:25 AM, Ashley Sheridan <ash(a)ashleysheridan.co.uk>wrote:

> On Wed, 2010-06-02 at 04:48 +0700, shiplu wrote:
>
> You can consider XAMPP. (www.apachefriends.org/en/xampp.html)
> It has everything in it.
>
> Mysql server, Apache server, PHPMyAdmin, PHP, Perl and an FTP server
> Just install it and its configured.
>
> Just put your files in htdocs and they will be up and running.
>
> I use this to package my intranet php application.
>
>
> Shiplu Mokadd.im
> My talks, http://talk.cmyweb.net
> Follow me, http://twitter.com/shiplu
> SUST Programmers, http://groups.google.com/group/p2psust
> Innovation distinguishes bet ... ... (ask Steve Jobs the rest)
>
>
>
> He's got that much (with the exception of the FTP server) up and running
> with EasyPHP. The issue he has now is getting his existing Java app to use
> the MySQL server from EasyPHP to avoid conflicting ports from the two MySQL
> systems installed. It can be run all as one with different users, and might
> be better now asking a MySQL list, unless anyone on here knows an easier
> way?
>
>
> Thanks,
> Ash
> http://www.ashleysheridan.co.uk
>
>
>


--
Regards,
Shreyas
From: shiplu on
On Wed, Jun 2, 2010 at 5:32 AM, Shreyas <shreyasbr(a)gmail.com> wrote:

> Since I have another Java app running and points to the same port 3306,
> when I tried to configure with EasyPHP, I had a conflict.
>
> How about configuring EasyPHP at a different port? In that ways, EasyPHP's
> MYSQL and my external MySQL will never have a conflicting situation.
>
> Does that make sense?
>
> --Shreyas
>
>
locate my.cnf file. Its in your mysql directory. And your mysql directory is
somewhere in wamp install directory.
Open the file with notepad/wordpad and change the port number.
Its written just like this,
port = 3306

Change is to
port = 3307 or whatever port you like.

Then restart mysql.

But remember, all you php app need to connect mysql through that 3307 port
which is not standard.
So mysql_connect() functions params should be tweaked.

Shiplu Mokadd.im
My talks, http://talk.cmyweb.net
Follow me, http://twitter.com/shiplu
SUST Programmers, http://groups.google.com/group/p2psust
Innovation distinguishes bet ... ... (ask Steve Jobs the rest)
From: Shreyas on
Right, Shilpu. I'll try that.

What would be the exact installer which will let me have the MySQL Server
and the Query browser? I know this is the wrong forum but I am just giving
it a shot. When I do Start -> All Programs -> MYSQL, I used to get only
above options. I have lost the installer and the actual MySQL website has
quite a lot of things.

--Shreyas


On Wed, Jun 2, 2010 at 4:08 AM, shiplu <shiplu.net(a)gmail.com> wrote:

>
> On Wed, Jun 2, 2010 at 5:32 AM, Shreyas <shreyasbr(a)gmail.com> wrote:
>
>> Since I have another Java app running and points to the same port 3306,
>> when I tried to configure with EasyPHP, I had a conflict.
>>
>> How about configuring EasyPHP at a different port? In that ways, EasyPHP's
>> MYSQL and my external MySQL will never have a conflicting situation.
>>
>> Does that make sense?
>>
>> --Shreyas
>>
>>
> locate my.cnf file. Its in your mysql directory. And your mysql directory
> is somewhere in wamp install directory.
> Open the file with notepad/wordpad and change the port number.
> Its written just like this,
> port = 3306
>
> Change is to
> port = 3307 or whatever port you like.
>
> Then restart mysql.
>
> But remember, all you php app need to connect mysql through that 3307 port
> which is not standard.
> So mysql_connect() functions params should be tweaked.
>
> Shiplu Mokadd.im
> My talks, http://talk.cmyweb.net
> Follow me, http://twitter.com/shiplu
> SUST Programmers, http://groups.google.com/group/p2psust
> Innovation distinguishes bet ... ... (ask Steve Jobs the rest)
>
>


--
Regards,
Shreyas