jrstafford Posted April 20, 2007 Share Posted April 20, 2007 I'm running Win2003 Server with IIS, PHP 5.2, and MySql 5. PHP works in some cases, for example, I have phpMyAdmin running fine, WordPress running fine, and a few other basic sites. However, I've tried to install other PHP applications (the case at hand being OS Commerce), where it seems the PHP code doesn't run. I install the files, run the index.php file in the browser and get a blank white screen. I've checked for the opening tag issue <? vs. <?php and everything is set to <?php. I'm wondering if there is a setting in the php.ini file that I am missing?? Not sure what to do next. Any help is appreciated! Thanks. Link to comment https://forums.phpfreaks.com/topic/47910-phpini-problem/ Share on other sites More sharing options...
jrstafford Posted April 20, 2007 Author Share Posted April 20, 2007 Code sample of what I am seeing: This works... <?php /* $Id: index.php,v 1.1 2002/01/02 13:02:38 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2002 osCommerce Released under the GNU General Public License */ print("Hello World") ?> This does NOT... <?php /* $Id: index.php,v 1.1 2002/01/02 13:02:38 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2002 osCommerce Released under the GNU General Public License */ require('includes/application.php'); $page_file = 'index.php'; $page_title = 'Welcome'; $page_contents = 'index.php'; require('templates/main_page.php'); ?> Link to comment https://forums.phpfreaks.com/topic/47910-phpini-problem/#findComment-234144 Share on other sites More sharing options...
jrstafford Posted April 20, 2007 Author Share Posted April 20, 2007 Any ideas at all? Link to comment https://forums.phpfreaks.com/topic/47910-phpini-problem/#findComment-234163 Share on other sites More sharing options...
jrstafford Posted April 20, 2007 Author Share Posted April 20, 2007 Some additional information... As I said earlier, I have phpMyAdmin running on the same server with no problems. I just tried to run the phpinfo.php file from within the phpMyAdmin site and that produces a blank page as well. What am I missing? Thanks, Link to comment https://forums.phpfreaks.com/topic/47910-phpini-problem/#findComment-234219 Share on other sites More sharing options...
per1os Posted April 20, 2007 Share Posted April 20, 2007 A Linux and apache setup? =) Link to comment https://forums.phpfreaks.com/topic/47910-phpini-problem/#findComment-234220 Share on other sites More sharing options...
jrstafford Posted April 20, 2007 Author Share Posted April 20, 2007 No there's an idea!!! It may come to that, but for now I'd like to get it running where it is. Thanks for your input though. Link to comment https://forums.phpfreaks.com/topic/47910-phpini-problem/#findComment-234232 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.