This is a discussion on HELP - sure is a piece of cake for you within the PHP Language forums, part of the PHP Programming Forums category; Hello all, I have installed apache server on my computer and all it takes to edit php files locally. everything ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello all,
I have installed apache server on my computer and all it takes to edit php files locally. everything works, and i can see my index.php file . however, the problem is: everything which is inside the <?php ?>is ignored. i have even done an echo check with the simplest htmk code. I'll copy it so you see i've done nothing wrong: <html> <head></head> <body> this line can be seen when writing http://127.0.0.1/index.php on the address bar but the bla bla is not. <?php echo "bla bla"; ?> </body> </html> Heeeeeeeeeeeeelp! I can't figure out why is that :( Appreciate your rapid response. got some things to work on . Efry |
|
|||
|
"greenflame" <dynamic.efry@gmail.com> wrote in message
news:1153944576.484296.84220@m79g2000cwm.googlegro ups.com... > Hello all, > I have installed apache server on my computer and all it takes to edit > php files locally. > everything works, and i can see my index.php file . > however, the problem is: > everything which is inside the <?php ?>is ignored. > i have even done an echo check with the simplest htmk code. > I'll copy it so you see i've done nothing wrong: > > <html> > <head></head> > > <body> > > this line can be seen when writing http://127.0.0.1/index.php on the > address bar but the bla bla is not. > <?php > echo "bla bla"; > ?> > > </body> > </html> > > > Heeeeeeeeeeeeelp! I can't figure out why is that :( > > Appreciate your rapid response. got some things to work on . > > Efry > Just ran your code through my server and it all works ok. Did you run: phpinfo(); to verify your setup? It would appear you may have a config issue. Phil |
|
|||
|
hi, Phil, and thank you for your rapid response.
mmmm. to be honest, I'd be glad to have more instructions since I have no idea what or hw to use this function. phpinfo(); and what does it mean to run something through a server? just rephrase, please. :D thank you Efry PTM כתב: > "greenflame" <dynamic.efry@gmail.com> wrote in message > news:1153944576.484296.84220@m79g2000cwm.googlegro ups.com... > > Hello all, > > I have installed apache server on my computer and all it takes to edit > > php files locally. > > everything works, and i can see my index.php file . > > however, the problem is: > > everything which is inside the <?php ?>is ignored. > > i have even done an echo check with the simplest htmk code. > > I'll copy it so you see i've done nothing wrong: > > > > <html> > > <head></head> > > > > <body> > > > > this line can be seen when writing http://127.0.0.1/index.php on the > > address bar but the bla bla is not. > > <?php > > echo "bla bla"; > > ?> > > > > </body> > > </html> > > > > > > Heeeeeeeeeeeeelp! I can't figure out why is that :( > > > > Appreciate your rapid response. got some things to work on . > > > > Efry > > > Just ran your code through my server and it all works ok. Did you run: > > phpinfo(); > > to verify your setup? It would appear you may have a config issue. > > > Phil |
|
|||
|
It probably depends on how / where you set up your server. I'm running
Apache, so I put files in: Apache_root / htdocs If you browse to http://localhost, you should get a listing of that directory (or an index page, if there is one present). The phpinfo() function will give a listing of all the extentions and configuration options you currently have with PHP. If a simple: <? phpinfo(); ?> program doesn't work for you, you've probably configured Apache / PHP incorrectly (very likely, it's quite difficult to set up the first few times) |
|
|||
|
greenflame wrote:
> Hello all, > I have installed apache server on my computer and all it takes to edit > php files locally. > everything works, and i can see my index.php file . > however, the problem is: > everything which is inside the <?php ?>is ignored. > i have even done an echo check with the simplest htmk code. > I'll copy it so you see i've done nothing wrong: > > <html> > <head></head> > > <body> > > this line can be seen when writing http://127.0.0.1/index.php on the > address bar but the bla bla is not. > <?php > echo "bla bla"; > ?> > > </body> > </html> > > > Heeeeeeeeeeeeelp! I can't figure out why is that :( > > Appreciate your rapid response. got some things to work on . > > Efry > I'm going to venture a guess that your server is not configured to execute PHP pages. View the source of the result page - five bucks says you see the PHP source in there (i.e. it looks exactly like your source code on the server). The reason you don't see "bla bla" is because the browser thinks <?php ... ?> is just a bad XML declaration or HTML tag and doesn't display it. Configuring apache to run .php pages through the PHP engine is nontrivial if you don't know what you're doing. Be careful. Jeremy |
|
|||
|
"greenflame" <dynamic.efry@gmail.com> wrote in message
news:1153945697.003650.20850@75g2000cwc.googlegrou ps.com... hi, Phil, and thank you for your rapid response. mmmm. to be honest, I'd be glad to have more instructions since I have no idea what or hw to use this function. phpinfo(); and what does it mean to run something through a server? just rephrase, please. :D thank you Efry PTM ???: > "greenflame" <dynamic.efry@gmail.com> wrote in message > news:1153944576.484296.84220@m79g2000cwm.googlegro ups.com... > > Hello all, > > I have installed apache server on my computer and all it takes to edit > > php files locally. > > everything works, and i can see my index.php file . > > however, the problem is: > > everything which is inside the <?php ?>is ignored. > > i have even done an echo check with the simplest htmk code. > > I'll copy it so you see i've done nothing wrong: > > > > <html> > > <head></head> > > > > <body> > > > > this line can be seen when writing http://127.0.0.1/index.php on the > > address bar but the bla bla is not. > > <?php > > echo "bla bla"; > > ?> > > > > </body> > > </html> > > > > > > Heeeeeeeeeeeeelp! I can't figure out why is that :( > > > > Appreciate your rapid response. got some things to work on . > > > > Efry > > > Just ran your code through my server and it all works ok. Did you run: > > phpinfo(); > > to verify your setup? It would appear you may have a config issue. > > > Phil Sorry. Just copied your code into a test.php file and then loaded it up into a browser running off my local Apache setup (just as you would have done). As Eric has said the phpinfo() command can simply be added to any '.php', so just <? phpinfo() ?> in an index.php file WILL return you a LOT of php information if your php is actually running. he wasn't kidding when he said 'its quite difficult to set up', in fact that was probably an under statement. (ps: try not to pre-post, in other words put your reply at the end, helps everyone else with reading it top-down) |
|
|||
|
PTM wrote:
> "greenflame" <dynamic.efry@gmail.com> wrote in message > news:1153945697.003650.20850@75g2000cwc.googlegrou ps.com... > hi, Phil, and thank you for your rapid response. > > mmmm. to be honest, I'd be glad to have more instructions since I have > no idea what or hw to use this function. phpinfo(); > > and what does it mean to run something through a server? just rephrase, > please. > :D > > thank you > Efry > PTM ???: >> "greenflame" <dynamic.efry@gmail.com> wrote in message >> news:1153944576.484296.84220@m79g2000cwm.googlegro ups.com... >>> Hello all, >>> I have installed apache server on my computer and all it takes to edit >>> php files locally. >>> everything works, and i can see my index.php file . >>> however, the problem is: >>> everything which is inside the <?php ?>is ignored. >>> i have even done an echo check with the simplest htmk code. >>> I'll copy it so you see i've done nothing wrong: >>> >>> <html> >>> <head></head> >>> >>> <body> >>> >>> this line can be seen when writing http://127.0.0.1/index.php on the >>> address bar but the bla bla is not. >>> <?php >>> echo "bla bla"; >>> ?> >>> >>> </body> >>> </html> >>> >>> >>> Heeeeeeeeeeeeelp! I can't figure out why is that :( >>> >>> Appreciate your rapid response. got some things to work on . >>> >>> Efry >>> >> Just ran your code through my server and it all works ok. Did you run: >> >> phpinfo(); >> >> to verify your setup? It would appear you may have a config issue. >> >> >> Phil > > Sorry. > Just copied your code into a test.php file and then loaded it up into a > browser running off my local Apache setup (just as you would have done). > As Eric has said the phpinfo() command can simply be added to any '.php', so > just <? phpinfo() ?> in an index.php file WILL return you a LOT of php > information if your php is actually running. > > he wasn't kidding when he said 'its quite difficult to set up', in fact that > was probably an under statement. > > (ps: try not to pre-post, in other words put your reply at the end, helps > everyone else with reading it top-down) > > - Create a php file, say you call it 'phpinfo.php', with this: <?php phpinfo(); ?> - Find in your Apache2.conf where the 'DocumentRoot' is set and save that file in that subdirectory. - Then load the file in a browser. http://localhost/phpinfo.php This will show you the PHP configuration. Thanks in Advance... IchBin, Pocono Lake, Pa, USA http://weconsultants.phpnet.us __________________________________________________ ________________________ 'If there is one, Knowledge is the "Fountain of Youth"' -William E. Taylor, Regular Guy (1952-) |
|
|||
|
PTM wrote:
> "greenflame" <dynamic.efry@gmail.com> wrote in message > news:1153945697.003650.20850@75g2000cwc.googlegrou ps.com... > hi, Phil, and thank you for your rapid response. > > mmmm. to be honest, I'd be glad to have more instructions since I have > no idea what or hw to use this function. phpinfo(); > > and what does it mean to run something through a server? just rephrase, > please. > :D > > thank you > Efry > PTM ???: - Create a php file, say you call it 'phpinfo.php', with this: <?php phpinfo(); ?> - Find in your Apache2.conf where the 'DocumentRoot' is set and save that file in that subdirectory. - Then load the file in a browser. http://localhost/phpinfo.php This will show you the PHP configuration. Thanks in Advance... IchBin, Pocono Lake, Pa, USA http://weconsultants.phpnet.us __________________________________________________ ________________________ 'If there is one, Knowledge is the "Fountain of Youth"' -William E. Taylor, Regular Guy (1952-) |
|
|||
|
"greenflame" <dynamic.efry@gmail.com> wrote in message news:1153944576.484296.84220@m79g2000cwm.googlegro ups.com... > Hello all, > I have installed apache server on my computer and all it takes to edit > php files locally. > everything works, and i can see my index.php file . > however, the problem is: > everything which is inside the <?php ?>is ignored. > i have even done an echo check with the simplest htmk code. > I'll copy it so you see i've done nothing wrong: > > <html> > <head></head> > > <body> > > this line can be seen when writing http://127.0.0.1/index.php on the > address bar but the bla bla is not. > <?php > echo "bla bla"; > ?> > > </body> > </html> > > > Heeeeeeeeeeeeelp! I can't figure out why is that :( > > Appreciate your rapid response. got some things to work on . Chances are that doing a phpinfo may not work if a simple echo also doesn't work. Always worth taking a look at your Apache error log file. |
|
|||
|
IchBin כתב: > PTM wrote: > > "greenflame" <dynamic.efry@gmail.com> wrote in message > > news:1153945697.003650.20850@75g2000cwc.googlegrou ps.com... > > hi, Phil, and thank you for your rapid response. > > > > mmmm. to be honest, I'd be glad to have more instructions since I have > > no idea what or hw to use this function. phpinfo(); > > > > and what does it mean to run something through a server? just rephrase, > > please. > > :D > > > > thank you > > Efry > > PTM ???: > > - Create a php file, say you call it 'phpinfo.php', with this: > <?php > phpinfo(); > ?> > > - Find in your Apache2.conf where the 'DocumentRoot' is set and save > that file in that subdirectory. > > - Then load the file in a browser. > > http://localhost/phpinfo.php > > This will show you the PHP configuration. > > Thanks in Advance... > IchBin, Pocono Lake, Pa, USA http://weconsultants.phpnet.us > __________________________________________________ ________________________ > > 'If there is one, Knowledge is the "Fountain of Youth"' > -William E. Taylor, Regular Guy (1952-) Hello all, thank you for your kind assistance. as you all think, I believe as well that I have installed it badly. I have changed the root server to another directory, and it doesn't recognize php files. i'll go over your suggestions to see if there's anything I can do. now, on the new directory I have copied the - htdocs, conf & logs directories. on http://localhost/ I still see the list of files. I'll check on your suggestions and see if I manage to change anything. Thank you all. Efry |