Phtml

They have: 21 posts

Joined: Nov 2001

Cheers! Hi Cheers!

I need a free host for my site but the site is proggrammed in PHTML so I need that feature i also nee MySQL

Brian Farkas's picture

They have: 1,015 posts

Joined: Apr 1999

Moved to web hosting forum.
Unfortunately, I don't know of any free host off the top of my head that supports this... You might check freecenter.com, though.

mairving's picture

They have: 2,256 posts

Joined: Feb 2001

You can make it work with one of two ways. Most of the time is you take an .phtml file and save it as a .php file it will work properly. The other way is to add an .htaccess file to your document root directory. In the .htaccess file, you will have this:
AddType application/x-httpd-php .phtml

I also use this file to make files .php files with .html extensions.

All this is assuming that you are using Apache as the webserver.

Mark Irving
I have a mind like a steel trap; it is rusty and illegal in 47 states

Brian Farkas's picture

They have: 1,015 posts

Joined: Apr 1999

It's also assuming that the host has PHP installed in the first place- I was thinking that most free hosts did not offer PHP on their servers, but I could be wrong.

Jaiem's picture

They have: 1,191 posts

Joined: Apr 1999

Mairving,

Will that also work with other file name extensions?

For example, can you set .html to be processed as a .shtml file?

mairving's picture

They have: 2,256 posts

Joined: Feb 2001

Quote: Originally posted by Jaiem
Mairving,

Will that also work with other file name extensions?

For example, can you set .html to be processed as a .shtml file?

Sure could. Add this line to an .htaccess file or you could add it to your httpd.conf file, it it was your own server:

AddType text/x-server-parsed-html .html

You could also add this line to pick up any .htm files:

AddType text/x-server-parsed-html .htm

Mark Irving
I have a mind like a steel trap; it is rusty and illegal in 47 states

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.