HELP - sure is a piece of cake for you

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 ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 07-26-2006
greenflame
 
Posts: n/a
Default HELP - sure is a piece of cake for you

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

Reply With Quote
  #2 (permalink)  
Old 07-26-2006
PTM
 
Posts: n/a
Default Re: HELP - sure is a piece of cake for you

"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


Reply With Quote
  #3 (permalink)  
Old 07-26-2006
greenflame
 
Posts: n/a
Default Re: HELP - sure is a piece of cake for you

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


Reply With Quote
  #4 (permalink)  
Old 07-26-2006
Eric Farraro
 
Posts: n/a
Default Re: HELP - sure is a piece of cake for you

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)

Reply With Quote
  #5 (permalink)  
Old 07-26-2006
Jeremy
 
Posts: n/a
Default Re: HELP - sure is a piece of cake for you

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
Reply With Quote
  #6 (permalink)  
Old 07-26-2006
PTM
 
Posts: n/a
Default Re: HELP - sure is a piece of cake for you

"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)


Reply With Quote
  #7 (permalink)  
Old 07-27-2006
IchBin
 
Posts: n/a
Default Re: HELP - sure is a piece of cake for you

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-)
Reply With Quote
  #8 (permalink)  
Old 07-27-2006
IchBin
 
Posts: n/a
Default Re: HELP - sure is a piece of cake for you

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-)
Reply With Quote
  #9 (permalink)  
Old 07-27-2006
elyob
 
Posts: n/a
Default Re: HELP - sure is a piece of cake for you


"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.





Reply With Quote
  #10 (permalink)  
Old 07-27-2006
greenflame
 
Posts: n/a
Default Re: HELP - sure is a piece of cake for you


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

Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 11:39 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0