Hello Folks,
Sorry for this dumb question. I just upload a simple "hello world" php code to my remote server.
When i try to access http://www.myserver.com/helloworld.php , the page doesn't display anything and I can read my php source code using view source option on IE.
Where did I make mistake?. Should I create my custom httpd.conf in order to enable php processing on my remote server? (ochosting.com)
TIA,
Andy
[SOLVED] Enabling PHP on Remote Server
Moderator: General Moderators
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
Perhaps you are using short tags and they have these disabled?
E.g, you have:
or
but you need to have
Mac
E.g, you have:
Code: Select all
<? echo 'hello world'; ?>Code: Select all
<?='hello world'?>Code: Select all
<?php echo 'hello world'; ?>- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK