Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Donovan
Client



Joined: Oct 07, 2003
Posts: 735
Location: Ohio

PostPosted: Sat Jan 29, 2005 9:35 am Reply with quote

I am wanting to move my MILPACS tables outside of the nuke database for a separate backup purpose.

I have seen several ways to do this but am asking what is the preferred way?

Do I need to create an includes folder and separate config.php for database connectivity outside of Nuke?

What is a config.inc.php, and how is it different from a config.php


Here is what I am thinking and what I have found in other modules.


Code:
<?php

if(eregi("_config.inc.php", $_SERVER["PHP_SELF"]) || eregi("_config.inc.php", $HTTP_SERVER_VARS["PHP_SELF"])) die("Access denied!");

// ################################### DATABASE SETTINGS  ##############################
$sql["hostname"] = "localhost"; // Hostname of the MySQL-Database
$sql["username"] = "xxxxxxx"; // MySQL Username
$sql["password"] = "xxxxxxx"; // MySQL Password
$sql["database"] = "xxxxxxx"; // MySQL Database Name

?>


Would I then have to code in include(config.php) to each of my pages?
 
View user's profile Send private message Visit poster's website ICQ Number
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Sun Jan 30, 2005 12:09 pm Reply with quote

config.inc.php is just "standard" way of letting the programmer (and user) know that it is an included file and means nothing as stand alone. Functionally there is no difference; you could call your config file "donovan.php" if you wanted to.

Now, on the other, a bit more detail is needed.

What exactly is your goal and why?
Will it still run under nuke?
If it will still run under nuke, why not use nuke's config.php?
Any other detailed information that might help.
 
View user's profile Send private message
Donovan







PostPosted: Sun Jan 30, 2005 2:58 pm Reply with quote

Backup of the modules database tables as well as a cleaner install of Nuke as to not have so many "aftermarket" tables that are added with different modules.

vWar is such an application that runs in Nuke just fine with an external database as well as Nuke Treasury. I have both of their tables in their own db.
 
Donovan







PostPosted: Sat Feb 05, 2005 8:39 pm Reply with quote

I made a db.inc.php file just for this purpose and was going to include this in each of my files.

Code:


<?php

/************************************************************************/
/* MILPACS                                                           */
/* ===========================                                          */
/*                                                                      */
/* Copyright (c) 2005 by Steven Donovan                                */
/* http://www.3rd-infantry-division.net                                 */
/*                                                                      */
/*                                                                      */
/************************************************************************/

//connection string to MILPACS database
$db = mysql_connect( "localhost", "username", "password");
mysql_select_db( "database_name", $db);
?>


But now when I try to pull up my roster it was giving me a same crap as before

Quote:
Fatal error: Call to a member function on a non-object


Is there a specific place I have to write my include statement if it is not in a function?

include("db.inc.php");

Here is the line the error referred to.
$result = $db->sql_query($sql);

It has to be this variable $db that is not geting passed or something.
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©