Jump to content

Floyd10

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Floyd10's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Thanks, I fixed it by adding the php.ini file to the windows folder.
  2. I figured out what the problem was: My php.ini file is not being read. Thus, the session settings are wrong. Unfortunately, I don't know how to fix this. I used phpinfo() to see where the php.ini file was and c:/winnt came up as the php.ini directory, but that isn't even a directory on my computer. So, I created the directory and copied my php.ini file into it to see if that would work as a temporary fix, but it didn't. How do I get the server to use my php.ini file instead of whatever it is using?
  3. [!--quoteo(post=366364:date=Apr 19 2006, 06:59 AM:name=Orio)--][div class=\'quotetop\']QUOTE(Orio @ Apr 19 2006, 06:59 AM) [snapback]366364[/snapback][/div][div class=\'quotemain\'][!--quotec--] Maybe you've got a problem with the db_connect.php file. Can you post it here? Orio. [/quote] The first code was the db_connect.php file.
  4. I'm trying to create a login code. I'm using the PEAR to connect to mysql. So, I link to the single database connection page on all many other pages with the require function. However, for some reason I can't figure out, after the require function no code processes. I do not recieve an error message. The code before the require function processes. I haven't a clue what's wrong? Here is the connection page (db_connect.php): [code]<?php //require the PEAR::DB classes. require_once 'DB.php'; $db_engine = 'mysql'; $db_user = 'root'; $db_pass = 'xxxxxx'; $db_host = 'localhost'; $db_name = 'my_db'; $datasource = $db_engine.'://'.               $db_user.':'.               $db_pass.'@'.                $db_host.'/'.                 $db_name; $db_object = DB::connect($datasource, TRUE); /* assign database object in $db_object, if the connection fails $db_object will contain the error message. */ // If $db_object contains an error: // error and exit. if(DB::isError($db_object)) {     die($db_object->getMessage()); } $db_object->setFetchMode(DB_FETCHMODE_ASSOC); include('check_login.php'); ?> [/code] Here is the first portion of one of my other pages: [code]<?php echo first; require('db_connect.php'); echo second;[/code] In this the word 'first' would be executed, but the word 'second' would not. No error message. This happens on all my pages that have the require function. Any advice would be appreciated. Thank you.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.