Aug 7, 2008

Php Configuration File - "config.php"

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Programming Languages > PHP Programming
Pages: 1, 2

free web hosting

Php Configuration File - "config.php"

alex1985
I did create this topic mainly because I want to know everything about that configuration file. I will post other replies if I want to know more depending on your experience.

Is this code correct for that file:

CODE
<?
$host="localhost";
$dbname="XXX";
$dbuser="XXX";
$dbpass="XXX";
$connection=mysql_connect($host, $dbuser, $dbpass) or die(mysql_error());
mysql_select_db($dbname) or die(mysql_error());
?>


Add your suggestions or improve it.

Reply

jlhaslip
CODE
<?
$host="localhost";
$dbname="XXX";
$dbuser="XXX";
$dbpass="XXX";
$connection=mysql_connect($host, $dbuser, $dbpass) or die(mysql_error());
mysql_select_db($dbname) or die(mysql_error());
?>


It looks like it is a "typical" configuration file, but you need to replace the "XXX" with the correct data for your account and MySql information.

Localhost is correct for a trap17 account, the dbname and dbuser will be prefixed with your trap17 account name and an underscore so that it would become jlhaslip_ followed by the actual name of the database.
The password would be specific to your database, too. You need to have the database built using the MySql selection in the cpanel and a user/password also needs to be previously created and allowed the privileges for the database.

Reply

alex1985
If there is a more stuff to write that configuration file based on security issue?

Reply

jlhaslip
Not really, that I am aware of.
Be sure to safe that file with a PHP file extension, though, in case someone links to it. When you use a php file extension, the contents can not be read in a Browser since there are not echo commands. You also might want to save it using the "common" inc.php file extension so you know that it is a file to be "included" and that it is a php file.

file name would become: "mysql.inc.php"

then include ("mysql.inc.php"); is what you would need in the php file which calls the include.
Another security issue would be to store the "mysql.inc.php" file outside of the public_html folder so that it is not available via the web, only by the php parser.
Then you would access it using include ("../mysql.inc.php"); (assuming the calling file is in the public_html folder.

Reply

alex1985
SO, you mean it's better to use like db.inc.php instead of confg.php?

Reply

jlhaslip
correct.

Reply

galexcd
I wouldn't suggest putting this file in the public_html folder. Put it up one directory in your root folder. This should keep your password hidden if the php parser were to ever break.

Reply

mafiastreetz
CODE
<?php
$_CONFIG = array(
'hostname' => 'localhost',
'username' => 'xxxxx',
'password' => 'xxxxx',
'database' => 'xxxxx',
'persistent' => 0,
'driver' => 'mysql',
);
?>


Wouldnt that be alrite for the config php aswell as thats what i use??

Reply

galexcd
QUOTE(mafiastreetz @ May 3 2008, 04:32 AM) *
CODE
<?php
$_CONFIG = array(
'hostname' => 'localhost',
'username' => 'xxxxx',
'password' => 'xxxxx',
'database' => 'xxxxx',
'persistent' => 0,
'driver' => 'mysql',
);
?>


Wouldnt that be alrite for the config php aswell as thats what i use??


well if you did that then you would have to connect to sql in every single file, just taking up your time every time you want to add a new file.

Reply

alex1985
Can you explain those two entries: 'persistent' => 0, 'driver' => 'mysql'. Why do I need them?

Reply

Latest Entries

alex1985
Its too clear now!!!

Reply

kudmus
Thanx guys for the info but a newbie like me would not jump into the config file. I need to start from scratch. I have google php tutorials but I keep getting the ones that are base on assumption I've already installed php or I need help with some trix on top of the basic php knowledge that I have. I need tutorials that will take me from the moment I double-click my php installer to the moment when I can say I have configured my site and php, apache and mySQL are now working in harmony. By the way my site is not on my rig. It's hosted by Trap17.
Can anyone point me to such resources? Pliz!

Reply

Erdemir
QUOTE(alex1985 @ Apr 25 2008, 12:27 AM) *
SO, you mean it's better to use like db.inc.php instead of confg.php?

QUOTE(jlhaslip @ Apr 25 2008, 02:49 AM) *
correct.



config.php or db.inc.php whatever its name is not important. For example: If filename is config.php, type the url of the config php, and you will see a blank page. You will not see the source codes, so filename is not important, I think.

Reply

alex1985
Thanks enough!!!

Reply

tracdoor
It looks pritty good, same as mine basically!

I don't think there's any improvement you can do security wise, but when your doing your mysql_query's use sprintf with mysql_real_escape_string (read up on it closer to the time) I think it makes the query more secure.

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Recent Queries:-
  1. warning: fopen(config.inc.tmp): failed to open stream: - 18.52 hr back. (1)
Similar Topics

Keywords : php, configution, file, config, php

  1. Need Some Help In File Browser
    listing all sub folders and files in them. (8)
  2. Updating Php File Through A Web Form
    (5)
    Hello, i'm not sure if this can be done with php or not but what i need is a way to make an php
    file that have an html form on it and it will take the info you put in to that form and write it to
    an existing php file, for example: if i have the file news.php and the file news_update.php. if you
    went to news_update.php you would get an form with a text area for you to write a new addition for
    the news.php file and when you hit submit it will add what you typed in the form to the file
    news.php. If this is going to be a big code or a hard one to make but some one think....
  3. File Checker-how To Check File Whith Html Through Html?
    (2)
    edit:sorry for the mistake it is php not html and its with not whith my code checking script= CODE
    <?php $file = '$CHECK'; if (file_exists($file)) {
        echo "The file $filename exists"; } else {     echo "The file $filename
    does not exist"; } ?> my question is how to check the file whith html example:on a page
    a text box is provided and a button the user writes a file name (or website) the user clicks on the
    submit button then it checks and show it (with the code above) i got the code C....
  4. Php And Flash Image Gallery
    Need some help in creating or editing an xml file while viewing some o (5)
    Hello there and thanks for the helping hand you are offering. PHP newbie here! /ph34r.gif"
    style="vertical-align:middle" emoid=":ph34r:" border="0" alt="ph34r.gif" /> So here is my problem:
    On my website I have a flash image gallery.The way the gallery works is by uploading pictures in a
    folder and editing? an xml file.(pics.xml) where it adds the following code when you upload a
    picture: CODE <pictures>     <image location="nameofpicture1.jpg"
    desc="" />     <image location="nameofpicture2.jpg" desc="" /&#....
  5. No File Extension
    (3)
    On MediaWiki, the URL of the content is http://YOURWIKI.com/index.php/Blah Is it possible to
    create a page or two that doesn't have a file extension? If so, how is it done?....
  6. File Upload
    File upload (1)
    I need to add a facility on my customer's website so his clients can send him jobs, typically
    5mb - 50mb. I've looked around the web and researched this, and tried a few tests (failed), but
    my brain's beginning to hurt. Could someone please tell me the best way to go about this,
    please. The site is done in Flash, but I'm sure a link to an html page would be ok if necessary.....
  7. <?php ?> Unique Visitors Script
    Flat file unique visitors script (no sessions) (2)
    This is really simple script. Well at least this part is, but it could be extendable. Only problem
    is that it's not really for massive websites with hundread of visitors a day, but rather for
    small ones. But it is a good script to figure out how to make a visitor counter script. Anyway
    here's the snippet. CODE <?php function getVisits($variable) {
        $visits = array();     if ($handle =
    opendir('stats/')) {     while (false !== ($file =
    readdir($handle))) {  ....
  8. [php]simple Flat File Text Manipulator
    Example on how to use forms to write to files in PHP (3)
    I made a simple flat file text editor, that can show you probably how simple it is to use forms with
    php and write that data to file. This example has 2 files, submit.php, and postit.html. Submit.php
    is used to write title, and some text, and add html tags, and paragraph tags where new paragraphs
    are. Here's the file with comments. I think that HTML really doesn't need some more
    explaining. CODE Title: <br /> <input type="text"
    name="title" size="53"> <br /> Text: <br />
    <textarea nam....
  9. Edit .txt File In Ftp Via Webpage
    file on external ftp (2)
    Right Im new here and stuggling with a problem im having. I've currently got a Login Script to
    login to a external ftp and it displays the folders contents, however i need it so it echos a
    specific file (coursedata.cfg) into a formarea which you can then edit the file and when u click
    save it overwrites the file with the new one. Im really quiet getting annoyed with it xD as
    everything i do ends up trying to include the file from the webserver the script is hosted on and
    not the external ftp source. thanks Full Code Bellow Simple FTP Manager body { fon....
  10. Php Help Needed Including File In A Page.
    (2)
    i'm a noob in php programming, i can understand and modify php programs, but i dont know to
    write on my own. So please somebody who is well versed in php help me. My need is, I'm
    currently builiding a knowledge base website , i've my own design for the website, check here,
    http://laschatz.info/kzone/ Each page in the left hand site has a tree navigation of all the
    topics available. Since this information must be same in all the pages, presently I need to change
    all the pages after adding a new category. Could you please help me in such a way that I can ad....
  11. Help Php: How To Load String From Text File (solved)
    Loading string from text file when you click on your link (9)
    I learned the way to load other files with the code posted on this forum. Now i wanted to try
    something for my side menu. I am calling this a string, --> $tekst , maybe it's
    called something else i'm not sure Now let's say i have a file called details.txt In that
    file i would like to have something like this $detailsaboutphp1 = ("details details details
    1"); $detailsaboutphp2 = ("details details details and even more details 2"); How to make a
    code that loads those $strings on click of a mouse. When we tried to load extern....
  12. Help Needed With Directory/file Listing Code Infinite Loop
    Made an infinite loop but why is this so? (5)
    Hi all ive got a small and simple (for the moment atleast /unsure.gif"
    style="vertical-align:middle" emoid=":unsure:" border="0" alt="unsure.gif" /> )file and directory
    listing script in php as follows CODE $dir = "."; $num = 0; $file =
    scandir($dir); while($file = scandir($dir)){     echo
    $file[$num];     echo "<BR>";     $num = $num + 1;     
    }; the concept is simple enough, the directory to start with is the current one, so scan this
    directory and wh....
  13. Display Random File In A Directory
    how to display a random file from a set directory. (9)
    hi, could someone please help me with this? I have some files in a directory and i want to know how
    i can randomly display link/s to one or more of the files in my directory for download. But it must
    not at any time display index.php which is also in the directory with the downloads. Thanks in
    advance for any help given /unsure.gif" style="vertical-align:middle" emoid=":unsure:" border="0"
    alt="unsure.gif" />....
  14. File Format Unknown! (wap)
    someone PLEASE HELP! (6)
    hi people :-) listen please can someone help me find the error in this wapsite page, its driving me
    nuts! It works fine on some phones but not on others (giving a file format unknown error) and im
    having serious problems finding the error but i bet its something stupid/simple. CODE <?php
    include ("config.php"); include ("core.php");
    header("Content-type: text/vnd.wap.wml"); header("Cache-Control:
    nostore, nocache, mustrevalidate"); print "<?xml version=\"1.0\&#....
  15. File In Database
    Question.thanks (1)
    Hi all i write this code i want when you see download.php (this code) my file goes for download for
    user sorry my english is not very good its a file database project for my university but when i
    browse this code my soruce file (.zip) echo in my page and dont goes for download my next querstion
    about safe mode i saw (php.net and zend) when safemode is on file databaseing and header() is not
    working . is it true ? if is it true i save my file at hosting and no (database) i want write
    standard script . plz help me thanks more and more CODE include("config.php&....
  16. Php Writes Into Txt File
    a question (8)
    QUOTE $fp=fopen("test.txt","a"); fputs($fp,"ok"); ?> The above method is only to
    add "ok" at the end (DO NOT write on a new line) I want to know... How to add data on a new line
    and at the end of txt file??! thx~....
  17. File String Delete?
    (2)
    Say i have a file file.txt... Can someone give me an example of how to delete a string from this
    file ie.. The file contains: wappy::sucks::at::php --- i want to delete sucks::....
  18. Logging Dowload Files From Your Server Onto A Html File
    (1)
    Well, i had the idea of logging the downloads from my web in a html file few weeks ago, and i solved
    it with a lil php page included in my homepage. You could name the links with a name like
    "download.php?file=filename.ext" and then, in the download.php put the next code: (well you put
    the html and head and body tags if u want, i only write the php here) CODE <? if
    (isset($_GET['file']))
    $file=$_GET['file']; //so it gets the GET data from url
    (file=filename.ext); $ip=$_SERVER[....
  19. Php File Problem
    (5)
    I have a problem... QUOTE Warning: file_get_contents(): open_basedir restriction in effect.
    File(/1/r0khan) is not within the allowed path(s):
    (/dh/web/phpmyadmin:/tmp:/usr/local/tmp:/dh/solidclient:/usr/local/lib/php:/home/r0khan:/home/.celin
    e/r0khan) in /home/.celine/r0khan/1/seo.php on line 69 Warning: file_get_contents(/1/r0khan):
    failed to open stream: Operation not permitted in /home/.celine/r0khan/1/seo.php on line 69
    Please help, im setting up a website of mine and im beggin 4 ur help, thx /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0....
  20. Include File.php?id=something
    using the include() function (13)
    Well, I am making a full CMS system for my site, and want to make the index.php file to include the
    view.php?id=1 file. I tried with this code, but it didn't work: CODE <?php include
    'view.php?id=1' ?> This is the error I get: CODE Warning:
    main(view.php?id=1) [function.main]: failed to open stream: Invalid argument
    in C:\server\xampp\htdocs\test\index.php on line 1 Warning:
    main() [function.include]: Failed opening 'view.php?id=1' for inclusion
    (i....
  21. Reading 16 Bit Wav File
    (0)
    hi! i'm having problem reading 16 bit wav files with php and it is starting to drive me
    crazy! i have written a small and simple script that will read wav file and create graph from
    it. now, it works as it should with 8 bit wav files. i'm getting all data as i'm supose to,
    but when it comes to 16 bit files i'm getting crap. i thought that in wav file you read chuncks
    as it is marked in header - so at 8 bit wav chunck is 8 bit long, at 16 bit wav 16 bit... anyway,
    here is part of the script where i read wav and put that in array: PHP Code: COD....
  22. Image Upload And File Size
    (2)
    Hi, I'm trying to upload rather large jpgs files (2560x1920 and ~ 2 megs in size) to my server
    via PHP. The problem I am having is that when I upload and attempt to resize by creating a new
    image, the new image is always black. Code I'm using is: PHP Code: CODE if(
    !empty($thefile_name) ) {                                                  
                                                 $query = "INSERT INTO coldwell_images
    (imagename) VALUES ('insertimage')";                    $result ....
  23. I Need Help With File Edit In Php
    with ftp (6)
    Currently i have CODE <?php if($_POST['user']=="" or
    $_POST['pass']=="" or $_POST['host']==""
    or $_POST['root']=="" or
    !isset($_POST['run'])){  print('<form method=post
    name=form>');  print('FTP username <input type=\'text\'
    name=user value=""><br>');  print('FTP password <input
    type=\'password\'....
  24. Alternative To File()?
    file stored in arrays (4)
    Hey guys. I was wondering if there is an alternative to using file(). I'm trying to read a file
    and store it into an array without using the file function. Before, I was doing something like this:
    CODE <?php  $file = file("http://yahoo.com"); ?> Simple.
    It gets the contents of index.html at yahoo.com and store each line in an array. Well, I was
    wondering if there is another code that could do that without using the file function. Thanks for
    helping!....
  25. File Uploading Issues
    (2)
    i have never tried to have files uploaded and i am still not able to do so. here is the codes that i
    am using right out of the php manual and it still isnt working. i have also listed the
    warnings/errors listed on the resulting page. my permissions are set to 777 also. i have a folder
    set up on my server as "uploads". i am however not sure if i have a default temp folder on my
    server. can anyone help me figure out what i am not doing correctly or what my next step is? this
    is the form that i am using: html Code: CODE <form enctype="multipart/form-data" ....
  26. Error When Using file_put_contents()
    failed to call to undefined function (4)
    Hey all, I decided to write a script which writes some text to a file, but I have a problem when I
    execute the script, I get a fatal error: QUOTE(homepage) Fatal error : Call to undefined
    function: file_put_contents() in /home/cmatcme/public_html/afile.php on line 55 This is the
    code I'm using to write the file: $ipfnsdoc =
    "/home/cmatcme/public_html/afolder/afile.txt"; if (!is_readable($ipfnsdoc)) {
    echo "File cannot be read"; $stopload = 1; } if (!is_writable($ipfnsdoc)) {
    echo " \nFile can....
  27. Secure Page Includes Non-secure File
    (1)
    The basic page layout I am working with has several includes on it (header.php, rightcolumn.php,
    leftcolum.php and so on), and it is on httpdocs folder. I have also instanced some classes wich I
    call at the beginnig of the home page. My problem arises when I try to run another page wich is
    supposed to be secure (placed, obviously, at httpsdocs folder), and both secure and non-secure page
    has the same layout?. What should I do? Make exact copies of the included files, classes and images
    inside the secure folder? Is there a way to call my classes, includes from SSL folder....
  28. Unexpected "$" Sign On Last Line Of File
    even if i change the line nos it's there (3)
    I am trying to create a file which send mail after a user has filled in the appropiate fields in a
    form. It checks to see whether the required fields are full, writes some mail headers and sends it.
    When I check to see if the code works, I get this error: QUOTE(affliates.cmat) Parse error:
    parse error, unexpected $ in /home/cmatcme/public_html/affliates.cmat on line 203 The
    funny thing is that regardelss of how long I make the file, the file always appear on the final
    line, whether I leave it blank or just put ?> . I understand that these errors ca....
  29. Script: Php Jukebox
    A one file script! (4)
    This scripts is so simple, you dont need to edit ANY of it! All you have to do is make a folder
    called 'songs' and put some audio files in it. Here is the whole page, I named it index.php
    and put it in a folder called 'music': CODE <!DOCTYPE HTML PUBLIC
    "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd"> <html> <head>
    <title>PHP jukebox</title> </head> <body> <!-- ©2005 Craig
    lloyd. All rights reserved. Visit cragllo.com for more sc....
  30. Getting List Of Directories And Files Using Php
    PHP Function for Directory and File List (6)
    is there a php function that lists the content of some folder.... example: /New folder new.txt
    left.gif download.zip dc.exe ....so is there..? /rolleyes.gif' border='0'
    style='vertical-align:middle' alt='rolleyes.gif' /> ....

    1. Looking for php, configution, file, config, php

Searching Video's for php, configution, file, config, php
Similar
Need Some
Help In File
Browser -
listing all
sub folders
and files in
them.
Updating Php
File Through
A Web Form
File
Checker-how
To Check
File Whith
Html Through
Html?
Php And
Flash Image
Gallery -
Need some
help in
creating or
editing an
xml file
while
viewing some
o
No File
Extension
File Upload
- File
upload
<?php
?> Unique
Visitors
Script -
Flat file
unique
visitors
script (no
sessions)
[php]simple
Flat File
Text
Manipulator
- Example on
how to use
forms to
write to
files in PHP
Edit .txt
File In Ftp
Via Webpage
- file on
external ftp
Php Help
Needed
Including
File In A
Page.
Help Php:
How To Load
String From
Text File
(solved) -
Loading
string from
text file
when you
click on
your link
Help Needed
With
Directory/fi
le Listing
Code
Infinite
Loop - Made
an infinite
loop but why
is this so?
Display
Random File
In A
Directory -
how to
display a
random file
from a set
directory.
File Format
Unknown!
(wap) -
someone
PLEASE
HELP!
File In
Database -
Question.tha
nks
Php Writes
Into Txt
File - a
question
File String
Delete?
Logging
Dowload
Files From
Your Server
Onto A Html
File
Php File
Problem
Include
File.php?id=
something -
using the
include()
function
Reading 16
Bit Wav File
Image Upload
And File
Size
I Need Help
With File
Edit In Php
- with ftp
Alternative
To File()? -
file stored
in arrays
File
Uploading
Issues
Error When
Using
file_put_con
tents() -
failed to
call to
undefined
function
Secure Page
Includes
Non-secure
File
Unexpected
"$
" Sign
On Last Line
Of File -
even if i
change the
line nos
it's
there
Script: Php
Jukebox - A
one file
script!
Getting List
Of
Directories
And Files
Using Php -
PHP Function
for
Directory
and File
List
advertisement



Php Configuration File - "config.php"



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE