April 2, 200520 yr comment_364 hello, do i need to change any of the servers configuration to enable embedded php script to function within a html page?atm if i embed php script into a html file all i get displayed is the raw php or a blank page. Report
April 2, 200520 yr comment_365 You probably need to edit the httpd.conf file or php.ini file for that. You have to add the extension along with the others.... Best Regards Olajide Olaolorun The Uniform Server Development Team Report
April 3, 200520 yr comment_374 No he is talking about embedding php into HTML... there is a way to do that using either the .html extension or .phtml Check those config files Best Regards Olajide Olaolorun The Uniform Server Development Team Report
April 3, 200520 yr comment_375 Take a look:http://www.faqts.com/knowledge_base/view.p...aid/9546/fid/51 Best Regards Olajide Olaolorun The Uniform Server Development Team Report
April 4, 200520 yr Author comment_382 thanks for the help but i worked out what to do afew hours after i made the post Report
April 4, 200520 yr comment_383 For those who want to have this feature, there is a simple shortcut and it dosen't require to cahnge your http.conf. Just add this line to the .htaccess file: addtype application/x-httpd-php .html .htm .bla You can add wathever you might want to, even something crazy, like .bla, your name or your nickname. In other words, personlize your site. If you do have.... personality. Report
April 8, 200520 yr comment_399 If needed server-wide:I'd say in W:\usr\local\apache2\conf\httpd.confFind: AddType application/x-httpd-php .phtml .php3 .phpEdit line to read AddType application/x-httpd-php .phtml .php3 .php .html .htm If needed in one or more folders: Use gopo's method, add them via .htaccess But I need to point out the security risk associated with this method! Any upload script should probably be updated to see the newly defined files as executables too, and treat them with the same care as .php files are given. Most to me known PHP upload systems see .html files as a kind of documents, and that may be dangerous. Report
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.