Jump to content

jayson

Members
  • Posts

    634
  • Joined

  • Last visited

Everything posted by jayson

  1. This is what I get now Warning: include(/php/inc/header.php) [function.include]: failed to open stream: No such file or directory in I:\xampp\xampp\htdocs\php\index.php
  2. If I do that, and then I publish it back to the server, no I need to rewrite it as <div id="header"> <!-- Starting Header Include --> <?php include $_SERVER['DOCUMENT_ROOT']."/inc/header.php"; ?> <!-- Ending Header Include --> </div>
  3. this is the include for the header, all the includes are the same: <div id="header"> <!-- Starting Header Include --> <?php include $_SERVER['DOCUMENT_ROOT']."/inc/header.php"; ?> <!-- Ending Header Include --> </div>
  4. What is the trick.. I just noticed that it installed to: I:/xampp/xampp Is that right? Could that be the problem. I 5 sites I have to work on and having the inc folders all in the same area is going to be a problem :?:
  5. ok, I have no idea how to fix that, so I moved my INC file to the htdocs, and now it works,, Thanks all for putting up with me
  6. Ok, I posted this question ( it disapeared)and maybe I canceled the post.. I get this error, now... Warning: include(I:/xampp/xampp/htdocs/inc/header.php) [function.include]: failed to open stream: No such file or directory in I:\xampp\xampp\htdocs\php\index.php on line 20 Warning: include() [function.include]: Failed opening 'I:/xampp/xampp/htdocs/inc/header.php' for inclusion (include_path='.;I:\xampp\xampp\php\pear\') in I:\xampp\xampp\htdocs\php\index.php on line 20 Warning: include(I:/xampp/xampp/htdocs/inc/menu.php) [function.include]: failed to open stream: No such file or directory in I:\xampp\xampp\htdocs\php\index.php on line 26 Warning: include() [function.include]: Failed opening 'I:/xampp/xampp/htdocs/inc/menu.php' for inclusion (include_path='.;I:\xampp\xampp\php\pear\') in I:\xampp\xampp\htdocs\php\index.php on line 26 Warning: include(I:/xampp/xampp/htdocs/inc/footer.php) [function.include]: failed to open stream: No such file or directory in I:\xampp\xampp\htdocs\php\index.php on line 86 Warning: include() [function.include]: Failed opening 'I:/xampp/xampp/htdocs/inc/footer.php' for inclusion (include_path='.;I:\xampp\xampp\php\pear\') in I:\xampp\xampp\htdocs\php\index.php on line 86
  7. Ok, I did all that, but I get this page: http://www.anonymizer.com/consumer/product.../blockpage.html I had spyblocker plus, but disabled it, and still will not work Blocked URL: localhost Blocked Resource: Default This page has been blocked by SpyStopper Pro due to security and Privacy concerns. Some Possible Reasons: # Tracks or Profiles you. # Gathers Private and Confidential Information from you. # Installs software on your machine without your approval. # Has Unsafe Content. # No Content other than Advertisements and Popup windows. If you are sure you want to visit this site, please click the link below: http://localhost NOTE: The above link will open site with a protected proxy. You &nbspshould take due care regardless and open this link with caution. but I will try to get it to work, maybe use IE and not firefox ok, disabled spyblocker, and now I get this: Unable to connect Firefox can't establish a connection to the server at localhost. * The site could be temporarily unavailable or too busy. Try again in a few moments. * If you are unable to load any pages, check your computer's network connection. * If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web. Ok, got past that problem, winxp was waiting for me to ask if I wanted apache to block or unblock the apache program
  8. Ok, I will give this a try, and hope I have better luck this one then the lite version. Thanks
  9. ok, this is what I did/do 1] extract it to I:\xampplite 2] doubled clicked apache_start (not the black screen telling me that apache was starting) 3] I put the folder here {I:\xampplite\htdocs\php) 4] opened browser entered in {http:/localhost/php/ 5] the browser opens, and I get a blank screen, and in the tab it says (GIF Image, 2x2 pixels) Nothing else shows, what did I do wrong... Thanks
  10. Ok, I gave up, do not know how to do this, so I will work with the script when it is on the server...
  11. ok, I admit it, I have no right doing this, I have no idea what to do or what I am doing, we need a simple tutorial
  12. Ok, I downloaded the xampplite-win32-1.5.1.zip, got it installed, now comes the hard part, getting it to work for me. java script:emoticon(':(', 'smid_2')
  13. Ojk, IO extracted the exe file, of xampp, I get this error: xampplite-win32-1.5.1 is not supported archive.. Should I go for the .zip xampplite-win32-1.5.1
  14. 2 part, problem 1] still can not get the BBcodes to work in FF 2] having problems downloading the xampp, it gets to 50/51 percent and then just stops...anyone else have this problem....
  15. I have been using FF for a year, no problem, now all of a sudden, it stopped working....I am replying to this with IE an works fine....Could it be FF got messed up for some reason?
  16. The button are not working for me
  17. I can enter in text, but if I want to add color, hyperlink, or a smilies, nothing works, should I open a trouble ticket to the help desk...It is not a big deal, just curious
  18. Well I am going to install it and see how bad I screw up my computer
  19. how techinal or hard or complicated is it to set up xampp?
  20. Ok, I am going to be a complete idiot here, this program installs on MY computer to view PHP files and get them to work as if they were on a server...right?
  21. I want ot make sure my php coding works before I upload it, this is what I have now: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META NAME="Generator" CONTENT="Stone's WebWriter 3.5"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title></title> <link rel="stylesheet" type="text/css" media="screen" title="Defined Style" href="mnafra.css" /> <style> html {height:100%;} * html #wrap {height:100%} </style> </head> <body> <div id="wrap"> <div id="header"> <!-- Starting Header Include --> <?php include $_SERVER['DOCUMENT_ROOT']."/inc/header.php"; ?> <!-- Ending Header Include --> </div> <div id="menu"> <!-- Starting Menu Include --> <?php include $_SERVER['DOCUMENT_ROOT']."/inc/menu.php"; ?> <!-- Ending Menu Include --> </div> <div id="main"> Main text </div> <div id="clearfooter"></div> <div id="footer"> <!-- Starting footer Include --> <?php include $_SERVER['DOCUMENT_ROOT']."/inc/footer.php"; ?> <!-- Ending footer Include --> </div> </div> </div> </body> </html> (I can not add color) (The color selector is not working) I would like to know how to change this to make it work on my home computer, so I can try the PHP scripting before I publish it... This is the coding I need help with <?php include $_SERVER['DOCUMENT_ROOT']."/inc/header.php"; ?> Thanks
  22. You have got to be kidding? But I guess with this being the 1st of April, I guess it all adds up!
  23. I must be getting off easy: raffic viewed * 196 386(1.96 visits/visitor) 286 (7.41 pages/visit) 11636(30.14 hits/visit) 128.95 MB (342.08 KB/visit) Traffic not viewed * 2343 8322 26.28 MB
  24. Link does not work, you need to add the .com after google
  25. My wife is hooked on that game, we got every sims 1 extension except for superstar sims 2 (PC) and all the Sims for the Playstation
×
×
  • Create New...