Picking up where others left off

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default Picking up where others left off

    Hi there, I've recently been employed as a junior web developer updating a
    website and intranet and i need a lot of help...I mentioned i knew php and
    mysql during the interview but i never said i knew cold fusion! Turns out
    everything is written in cold fusion. This wouldn't be a problem except its up
    to me to figure out how everything is configured. The lady who used to do
    everything has left, she didnt leave documentation and can't be
    contacted...There's an IT department but they keep referring me back to the
    lady who left saying she did everything on her own and was the only one who
    knew. The biggest problem here is i dont know what the problem is...let me
    explain further:

    What i know so far is that the website is hosted on a server to which we ftp
    the files across to. The cold fusion queries have sql commands within them,
    its connecting to a datasource but i have no idea how it knows which datasource
    its connecting to, there must be a file somewhere saying where to connect to
    and login info. I dont even know what kind of database is being used, nobody
    seems to know, is there somewhere i can find clues as to what this database is,
    where to access this database and what passwords to use? The database has some
    tables in it already, i can see this from a web admin page (created by the lady
    who left) which contains a form that should let me create a table but its
    coming up with an error and i can only insert and delete things from tables
    that already exist. So that will become a huge problem as days go by...Is there
    a special folder somewhere that has information about whats installed?

    I'm so lost, any help at all would be appreciated.

    smilypie Guest

  2. Similar Questions and Discussions

    1. Ray Picking with director
      Ok here is my problem...for picking purposes I need to shoot a ray that goes from my mouse pointer (using spriteSpaceToWorldSpace) on to screen...
    2. help on picking up key & values
      Joseph, Let me try and explain. i have a perl script place_order which takes arguments as below: 1. ./place_order -t...
    3. picking lingo
      HI, I'm finding it really hard to get to grips with picking lingo...been through many examples but can't seem to get it working. Could somebody...
    4. 'while' not picking up on first DB record
      Hello, Can anyone from the lists please tell me why this bit of code is not picking up on the first record in the database? If the 'id' I'm...
    5. picking up value in code behind
      "Scott Collens" <scottcollens@nospam.hotmail.com> wrote Scott, In the User Control, create a public property public string Username { get {...
  3. #2

    Default Re: Picking up where others left off

    Are you hosting the site, or is someone else? If, you are hosting it you need
    to get access to ColdFusion Administrator, within that there will be a list of
    all your database connections. Otherwise contact your hosting service for the
    information. Let me know the answer and we can go from there.

    akulla Guest

  4. #3

    Default Re: Picking up where others left off

    ColdFusion connects to the databse via cfquery. For cfquery to know which
    database to access uses the datasource attribute, this refers to an entry in
    the ColdFusion administrator. It sound like your site is hosted by a 3rd party,
    so you must call them and ask where the database is what database, access,
    mySQL, MS SQL, etc.

    If you need to learn fast then I cannot recommend this book high enough:-
    [url]http://www.amazon.co.uk/exec/obidos/ASIN/0321223675/qid=1130253905/sr=8-1/ref=pd[/url]
    _ka_1/202-1650291-0385458

    Also you will defintely need LiveDocs too:- [url]http://livedocs.macromedia.com/[/url]

    HTH

    Stressed_Simon Guest

  5. #4

    Default Re: Picking up where others left off

    Thankyou so much for the replies. I'm pretty sure the site is hosted by a third party called adcorp but i can't be 100% certain. I'll give them a call and find out.

    ~Smily
    smilypie Guest

  6. #5

    Default Re: Picking up where others left off

    Do an nslookup on the domain name, then do a arin.net lookup on the IP address.
    That should give you the owner of the IP block. This might correspond to the
    hosting company, or your or their upstream ISP.

    Kronin555 Guest

  7. #6

    Default Re: Picking up where others left off

    Cold Fusion uses a page called 'Application.cfm'. Usually this page is set up
    with global variables for use on the site.

    Eg. <cfset allsitedns = "[dnsname]"> might be found there.

    In the queries that you are looking at, there should be a parameter called
    datasource="[whatever]" The [whatever] will either be the name of the database
    connection or the name of a variable. (variables will be indicated by hash
    symbols "#[whatever]#".

    The way that the Application.cfm page works is that coldfusion will search
    every directory until the root looking for the Applicaiton.cfm page, it it
    exists, it stops looking and uses that one. (if it doesn't exist, it processes
    the pages without it).

    I would suggest checking your document root and seeing if the page is in
    there. This should be one of the first pages for you to study as it may
    contain the answers to many mysteries throughout the site.

    Hope this helps,
    William

    coderWil Guest

  8. #7

    Default Re: Picking up where others left off

    Kronin i tried your idea, its definitely being hosted by adcorp, I sent them an
    email and am waiting for a reply, fingers crossed they get back to me because
    it's been a while.

    Thanx coderWil! I'll definitely have a look at that page on Monday, i do
    remember seeing it when i was snooping around before so its looking good.

    ~Smily

    smilypie Guest

  9. #8

    Default Re: Picking up where others left off

    CoderWil you rock, i found a whole bunch of useful stuff in the Application.cfm
    file. Things are starting to make more sense now. I emailed the hosting company
    and they mentioned nobody can add tables except for them on request and our
    company doesnt have direct access.

    smilypie Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139