what new setup?
7 Message(s) by 3 Author(s) originally posted in php language
| From: Fred |
Date: Saturday, September 29, 2007
|
Hi,
I am totally new to php and wish to set it up on my computer with
the following in mind:
First I want to set up so as to have php able to
run my scripts on
this
machine without having going through a web
server . For example,
file i/o, create files,
delete files, read in
text a
line at a time or
whole files to a var;
split lines into several vars etc, etc. Also,
move, create, rename, and delete sub-directories; read from and
write to
a database. (mysql?) You get the idea -
sort of like souped up batch files.
Second, Then start applying this to php at work on my web site.
I am not sure what to get in the way of a simple to set up
solution but
I have looked here:
http://www.hotscripts.com/PHP/Software_and_Servers/Installation_Kits/
Perhaps something like WAMP5, EasyWAMP, or perhaps ZZEE PHP GUI? The
problem is that I do not know nuthin yet.
This isn't something I'm going to dally with. I
real ly want to get a
handle on PHP and at the same time solve some of my real needs at the
home computer level. If it's necessary to have a web server from the
getgo I have a little server on the
network here in the home where that
can reside while I learn.I hope I have been clear as to what I wish for so perhaps someone could
start me off with some ideas as to what simple installation'd get me
going.
In advance thank you very much for listening!
fried
| From: Brendan Gillatt |
Date: Sunday, September 30, 2007
|
-----BEGIN
PGP SIGNED MESSAGE-----
Hash: SHA1
wrote in message:
Hi,
I am totally new to php and wish to set it up on my computer with the
following in mind:
First I want to set up so as to have php able to run my scripts on
this machine without having going through a web server. For example,
file i/o, create files, delete files, read in text a line at a time or
whole files to a var; split lines into several vars etc, etc. Also,
move, create, rename, and delete sub-directories; read from and write to
a database. (mysql?) You get the idea - sort of like souped up batch files.
Second, Then start applying this to php at work on my web site.
I am not sure what to get in the way of a simple to set up solution but
I have looked here:
http://www.hotscripts.com/PHP/Software_and_Servers/Installation_Kits/
Perhaps something like WAMP5, EasyWAMP, or perhaps ZZEE PHP GUI? The
problem is that I do not know nuthin yet.
This isn't something I'm going to dally with. I really want to get a
handle on PHP and at the same time solve some of my real needs at the
home computer level. If it's necessary to have a web server from the
getgo I have a little server on the network here in the home where that
can reside while I learn.
I hope I have been clear as to what I wish for so perhaps someone could
start me off with some ideas as to what simple installation'd get me
going.
In advance thank you very much for listening!
friedI recommend NetServer as a WAMP - you simply extract it, open up the
program and tell it to install the particular servers you want. Comes
with PHP
Apache MySQL and FileZilla.
- --
Brendan Gillatt
brendan {at} brendangillatt {dot} co {dot} uk
http://www.brendangillatt.co.uk
PGP Key:
http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xBACD7433
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (MingW32)
iD8DBQFG/6fQkA9dCbrNdDMRAtPOAJwMQ6tPz5mwzaIAucWvf4XU9soJcACggN7C
vjG0amxBXhMYbRl0Jv1vM88=
=E3vw
-----END PGP SIGNATURE-----
| From: Fred |
Date: Sunday, September 30, 2007
|
wrote in message:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
wrote in message:
Hi,
I am totally new to php and wish to set it up on my computer with the
following in mind:
First I want to set up so as to have php able to run my scripts on
this machine without having going through a web server. For example,
file i/o, create files, delete files, read in text a line at a time or
whole files to a var; split lines into several vars etc, etc. Also,
move, create, rename, and delete sub-directories; read from and write to
a database. (mysql?) You get the idea - sort of like souped up batch files.
Second, Then start applying this to php at work on my web site.
I am not sure what to get in the way of a simple to set up solution but
I have looked here:
http://www.hotscripts.com/PHP/Software_and_Servers/Installation_Kits/
Perhaps something like WAMP5, EasyWAMP, or perhaps ZZEE PHP GUI? The
problem is that I do not know nuthin yet.
This isn't something I'm going to dally with. I really want to get a
handle on PHP and at the same time solve some of my real needs at the
home computer level. If it's necessary to have a web server from the
getgo I have a little server on the network here in the home where that
can reside while I learn.
I hope I have been clear as to what I wish for so perhaps someone could
start me off with some ideas as to what simple installation'd get me
going.
In advance thank you very much for listening!
fried
I recommend NetServer as a WAMP - you simply extract it, open up the
program and tell it to install the particular servers you want. Comes
with PHP Apache MySQL and FileZilla.
Thanks so much Mr. Gillatt! That sounds like what I'd need. Just
one question - Does a setup such as this allow for the
execution of the
script on the local machine?
Fred
- --
Brendan Gillatt
brendan {at} brendangillatt {dot} co {dot} uk
http://www.brendangillatt.co.uk
PGP Key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xBACD7433
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (MingW32)
iD8DBQFG/6fQkA9dCbrNdDMRAtPOAJwMQ6tPz5mwzaIAucWvf4XU9soJcACggN7C
vjG0amxBXhMYbRl0Jv1vM88=
=E3vw
-----END PGP SIGNATURE-----
| From: Erwin Moller |
Date: Tuesday, October 02, 2007
|
wrote in message:
Thanks so much Mr. Gillatt! That sounds like what I'd need. Just
one question - Does a setup such as this allow for the execution of the
script on the local machine?
Yes.
After a succesfull install you can simply use:
http://localhost/
or from commandline:
php
<somescript>
If you are going to play around with files, be sure you understand
filepermission.
PHP runs as a user (of course), often www-data or apache or nobody
(maybe more, I saw only these 3).
Regards,
Erwin Moller
Fred
| From: Fred |
Date: Tuesday, October 02, 2007
|
wrote in message:
wrote in message:
Thanks so much Mr. Gillatt! That sounds like what I'd need.
Just one question - Does a setup such as this allow for the execution
of the script on the local machine?
Yes.
After a succesfull install you can simply use:
http://localhost/
or from commandline:
php
<somescript>
> If you are going to play around with files, be sure you understand
filepermission.
Thanks, I understand file permissions but have to rethink them on
windows which has a little different setup.
PHP runs as a user (of course), often www-data or apache or nobody
(maybe more, I saw only these 3).
Regards,
Erwin Moller
Thanks Mr. Moller!
Fred
| From: Erwin Moller |
Date: Wednesday, October 03, 2007
|
wrote in message:
wrote in message:
<snip>
If you are going to play around with files, be sure you understand
filepermission.
Thanks, I understand file permissions but have to rethink them on
windows which has a little different setup.
Aha,
Windows . No www-data or nobody or apache then. ;-)
The username of the
process in IIS6 and lower defaults to
IUSR_
<machinename> where
<machinename> is simply the name of your computer.
If you are on IIS7, it is simply IUSR, but IIS7 is more complex than
just that. (And unstable on my Vista)
Good luck and happy PHP-ing.
Regards,
Erwin Moller
PHP runs as a user (of course), often www-data or apache or nobody
(maybe more, I saw only these 3).
Regards,
Erwin Moller
Thanks Mr. Moller!
Fred
| From: Brendan Gillatt |
Date: Wednesday, October 03, 2007
|
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
wrote in message:
wrote in message:
Thanks so much Mr. Gillatt! That sounds like what I'd need.
Just one question - Does a setup such as this allow for the execution
of the script on the local machine?
Yes.
After a succesfull install you can simply use:
http://localhost/
or from commandline:
php
<somescript>
If you are going to play around with files, be sure you understand
filepermission.
PHP runs as a user (of course), often www-data or apache or nobody
(maybe more, I saw only these 3).
In windows (as my netserver is set up) it runs as SERVICE. I do not care
about this from a security standpoint - I only run it localy - not even
accesible from LAN. I suggest the OP does the same if they're just
starting out on setting up servers. Ultimately, I'd set up a local
user with very limited permissions and run the apache
service under that.
Regards,
Erwin Moller
Fred
- --
Brendan Gillatt
brendan {at} brendangillatt {dot} co {dot} uk
http://www.brendangillatt.co.uk
PGP Key:
http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xBACD7433
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (MingW32)
iD8DBQFHA++bkA9dCbrNdDMRAnOsAJ0cLtw/y+QcOXXdxBdq6NFK/3bpHQCFCAVT
qpl64jW9KQ0g3TJtVZ1TXsE=
=YPR5
-----END PGP SIGNATURE-----
Next Message: protect php file
Blogs related to what new setup?
This is an postgresql assumption but it seems like it is a welcome ...
Cr1st0 yes that is
new even possible. is it possible to
setup to forum hosting users with the same email address? I would like to
setup an admin account and a regular account with a common email two forum users rather
...
put the card php 4 in asked if I want to import opens a window go ...
yeah there is a
PHP site that allows logins. it’sa file browser type website. MTecknology
set up LAMP on your machine !LAMP. Nubbie, I want to host it on our servers. LAMP is an acronym for Linux-Apache-MySQL-
PHP.
...
New Setup. Cables/Speaker Wire Advice Please. Think I wasted money ...
I just recently finished buying 97% percent of my
new set up for a bed room. The Room Size is 13.5x12. The TV will be on the 12 side wall and so will the bed but on the other side. In the room will be a full size bed and the
setup and a
...
Im backing up registration imporant stuff in my debian install ...
hi there im
new to linux web hosting and have removed a program then reinstalled it else where when i type the program name in to run it trys going to the original location and says it cnnot find it. where can i change the shortcut for
...
new DatePicker in Contribute : Your Scripts
Topic:
new DatePicker Message: I re-wrote the DatePicker class again. It is now a legitimate mootools class. Meaning it uses the MooTools Class constructor. You can define the DatePicker the same way that it was originally done,
...
new DatePicker in Contribute : Your Scripts
... 'Saturday'], format: 'mm/dd/yyyy', yearStart:
new Date().getFullYear(), yearRange: 10, yearOrder: 'asc', width: 155, offsets: {'x':0, 'y':20}, delay: 100, zIndex: 1000 }, /**
setup the
new DatePicker */ initialize: function(el,
...