tomharto Posted September 18, 2011 Report Share Posted September 18, 2011 I have a site using a few files with the filenames in ths format "_inc.somename.php" and for some reason when i try and use them on Uniserver the just show up as blank. Is this a known issue / is there a fix or work around for this? Quote Link to comment Share on other sites More sharing options...
Coral Posted September 18, 2011 Report Share Posted September 18, 2011 If your pages work on other servers and fail on Uniserver they probably use short open tags <? ?> use the long form <?php ?> Quote Link to comment Share on other sites More sharing options...
tomharto Posted September 18, 2011 Author Report Share Posted September 18, 2011 If your pages work on other servers and fail on Uniserver they probably use short open tags <? ?> use the long form <?php ?> They use the long ones This is the opening part of my index page <?php session_start();error_reporting (E_ALL ^ E_NOTICE); $styleSheet = "stylee.css";include ("include/config.php");include ("include/function.php");include ("include/function_homepage.php"); $hpInfo = "";getHomepageInfo($hpInfo);require_once ("_inc.header.php");$userID = $_SESSION['userID']; ?> if i go directly to _inc.header.php it shows blank too and that uses full <?php tags too Quote Link to comment Share on other sites More sharing options...
Coral Posted September 18, 2011 Report Share Posted September 18, 2011 Stop the servers.From the tray menu switch php.ini to developmentRestart server Try this code:Save both files to folder UniServer\wwwFile index.php<?php //Main test file index.php echo "<h1>Test 1</h1>"; require_once ("_inc.header.php"); ?> File _inc.header.php<?php //Include file _inc.header.php echo "<h1>Hello World!</h1>"; ?> Start serversType following into browser address barhttp://localhost/index.php What errors are reported? Quote Link to comment Share on other sites More sharing options...
tomharto Posted September 19, 2011 Author Report Share Posted September 19, 2011 Stop the servers.From the tray menu switch php.ini to developmentRestart server Try this code:Save both files to folder UniServer\wwwFile index.php<?php //Main test file index.php echo "<h1>Test 1</h1>"; require_once ("_inc.header.php"); ?> File _inc.header.php<?php //Include file _inc.header.php echo "<h1>Hello World!</h1>"; ?> Start serversType following into browser address barhttp://localhost/index.php What errors are reported? That works okay, must be a problem in my files coding then, i thought since it worked on my web server and not uniserver it was something to do with that. Ill check it all over and report back if i still have problems, thanks Quote Link to comment Share on other sites More sharing options...
tomharto Posted September 19, 2011 Author Report Share Posted September 19, 2011 That works okay, must be a problem in my files coding then, i thought since it worked on my web server and not uniserver it was something to do with that. Ill check it all over and report back if i still have problems, thanks It was a <? in my _inc.header.php. Was an include at the bottom of it what i missed, thanks for your help Quote Link to comment Share on other sites More sharing options...
BobS Posted September 19, 2011 Report Share Posted September 19, 2011 So Coral called it right to begin with Coral: 1, bad php code: 0 Regards,BobS Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.