Moving to CF10, Need help with Application.cfc

I've been googling about how to work with Application.cfc since last week but I still have some questions and I can't find the answers.
My application is under the root (in unix) and there are many subfolders underneath it. Each sub-folder is hosting a different web application.
From what I read, I can create 1 root Application.cfc and then on subsequent sub-folder, when I need to have another Application.cfc on that level, I can create ProxyApplication (see below) and then create a sub-folder level Applicatin.cfc
So, when I set an application.DSN on my root Application.cfc, using proxyApplication I don't have to reset this dsn again in my sub folder level Application.cfc
Since my loginform.cfm and loginaction.cfm is right under root directory too,  I also set OnsessionStart in the root Application.cfc to handle user login. Then this means, I don't have to reset session variable again anywhere because session.username, etc has been set on the highest level.
Is this correct?
In addition, Am I correct when I do the following:
1. Since I have root level and sub-folder level Application.cfc, I should set this.name with a different name, am I right?
    On the root Application.cfc I set this.name = "StudentServices" because this represent the global application
    On the sub-folder level's Application.cfc, I set this.name to "StudentServices_stdLoad" becaus this sub-folder only handle student load application.
2. On the root Application.cfc, I set the DSN to the application scope. So on the sub-folder level Application.cfc I can check if a particular db is working or not
    because as awhole, in the global sense, this web application uses more than one Databases. Each sub-folder may use a database that is dfferent than the other sub folder.
Am I doing the right thing? Please advice
Below is example of what I have, Thank you!
I created a root Application.cfc under the root directory: 
<CFCOMPONENT displayname="Application" output="true" hint="My Root Application component">
   <!--- Set up the application --->    <cfset THIS.Name = "StudentServices" />    <cfset THIS.ApplicationTimeout = CreateTimeSpan(0,0,30,0) />    <cfset THIS.SessionManagement = true />    <cfset THIS.SetClientCookies = false />
       <cffunction name="OnApplicationStart" access="public" returntype="boolean" output="false">
   <cfset application.MainDSN = "DSN1">
   <cfset application.ReportDSN = "DSN2">
   <cfreturn true/>
</cffunction>
 <cffunction name="onApplicationEnd" output="false">
     <cfargument name="applicationScope" required="true">  </cffunction>
 <cffunction name="onSessionEnd">
</CFCOMPONENT>
Then, in this root directory I also created a ProxyApplication:
 <!--- it's empty and it Serves merely to create an alias for your root /Application.cfc --->
 <cfcomponent name="ApplicationProxy" extends="AdvancementServices.Application"> 
</cfcomponent>
Then in the Sub-Directory, I can create a sub-folder level Application.cfc extending the root Application.cfc:
 <CFCOMPONENT displayname="Application" extends="ApplicationProxy">
    <!--- Set up the sub-folder application --->
    <cfset THIS.Name = "StudentServices_stdLoad"/> 
    <cfset THIS.ApplicationTimeout = CreateTimeSpan(0,0,30,0) /> 
    <cfset THIS.SessionManagement = true/> 
    <cfset THIS.SetClientCookies = false/> 
    <cffunction name="OnApplicationStart" access="public" returntype="boolean" output="false">
       <!--- ****** Testing whether the ADVUPGRD is accessible by selecting some data.****** --->
       <cftry>
       <cfquery name="TestMain_DSN" datasource="#application.MainDSN#" maxrows="2">
         SELECT Count(*)          FROM MyTable
       </cfquery>
         <!--- If we get a database error, report an error to the user, log the error information, and do not start the application. --->
        <cfcatch type="database">
          <cflog file="#this.name#" type="error" text="Main DSN is not available. message: #cfcatch.message# Detail: #cfcatch.detail# Native Error: #cfcatch.NativeErrorCode#" >
         <cfthrow message="This application encountered an error when connecting to the Main Database. Please contact support." />
         <cfreturn false>
       </cfcatch>
     </cftry>
     <cflog file="#this.name#" type="Information" text="Application #this.name# Started">
     <cfreturn true/>
   </cffunction>
</CFCOMPONENT>
    <cfargument name = "SessionScope" required=true/>     <cfargument name = "AppScope" required=true/>
</cffunction>
<cffunction name="OnSessionStart" access="public" returntype="void" output="false"> 
  <CFSET session.UserGroup = ""/> 
  <CFSET session.UserName = ""/> 
  <CFSET session.currentPage = ""/> 
  <CFSET session.loggedin = "No"/> 
  <CFSET session.userrights = ""/>
  <cfreturn/>
</cffunction>

OK.  It sounds to me like you really shouldn't be using a single root Application.cfc at all, if all you want to do is share some settings between your "sub-applications".  I would look at storing the common settings in an external file that all of the applications can read in.  The simplest way is to put the settings in a .CFM file somwhere outside of the web root (so it is not directly web accessible) and load it with <cfinclude> tag into the OnApplicationStart() method of each sub-application's App.cfc.  That .CFM file can be as simple as:
<cfset application.myCustomSetting = "blahblah">
<cfset application.myOtherSetting = "foo">
Alternatively, you can look at using a config file like this Ray Camden blog post suggests, and use the GetProfileSection(), GetProfileString(), and SetProfileString() functions as needed within OnApplicationStart().  You could even put ALL of your settings in
A third option is to store your settings in an XML file or in JSON format in a text file.  You could then write code to read in the XML file, and use something like xml2struct.cfc to convert the XML into a struct, then append the struct to your application scope.  If you go the JSON route, then just read in the JSON file and use DeserializeJSON() to convert it into a struct, and append it to the application scope.
What I think is probably the best approach is to use a community-supported MVC framework like FW/1 or ColdBox (maybe you already are, I don't think you've said so though).  One of the many advantages to doing so is that they have built-in "environment" support that can be used to configure common settings, depending on your environment (dev/qa/production).  You would handle reading in your external settings through the "environment" mechanism.
One other thing to think about: your login mechanism.  I think you want to use one set of login tools that is shared by all of the "sub-applications".  You can do this also by putting the login/authentication-related code somewhere outside the webroot of your applications, and then either set up a mapping to that location in CF Admin, or set an application-specific mapping in your various App.cfc files.  That way all the "sub-applications" share a common set of code for the login process.  I don't know how your login process works (do all users go to the same login page then get redirected into their relevant "sub-application", or does each "sub-application" have a discrete login page that utilizes common back-end processes to authenticate and redirect), so you'll have to judge how that is best accomplished.
Hopefully this gives you some useful ideas.
-Carl V.

Similar Messages

  • Need help with application.cfc

    Here is what I am trying to do. I have a login page, and when
    a user logs in it verifies their credentials. If everything is good
    it sets a session variable called #session.username#. What I want
    to happen is at that point update a database field to set the user
    logged on status to 1. Everything to that point is fine. I am
    getting stuck at updating the databse when the users session ends.
    Before the session ends I would like to update the db field for the
    user and set the logged on status to 0.
    I haven't used application.cfc before. I have been messing
    around but nothing is working. Here is a copy of my application.cfc
    file. If anyone has any idea on how to run a query onsessionend and
    update a db I would appreciate it.
    <cfcomponent output="false">
    <cfset this.name = "test">
    <cfset this.applicationTimeout =
    createTimeSpan(0,2,0,0)>
    <cfset this.clientManagement = true>
    <cfset this.clientStorage = "registry">
    <cfset this.loginStorage = "session">
    <cfset this.sessionManagement = true>
    <cfset this.sessionTimeout = createTimeSpan(0,0,0,30)>
    <cfset this.setClientCookies = true>
    <cfset this.setDomainCookies = false>
    <cfset this.scriptProtect = false>
    <cffunction name="onApplicationStart" returnType="boolean"
    output="false">
    <cfset application.dsn = "dsn">
    </cffunction>
    <cffunction name="onSessionStart" returnType="void"
    output="false">
    <cfargument name="sessionScope" type="struct"
    required="true">
    <cfargument name="appScope" type="struct"
    required="false">
    </cffunction>
    <cffunction name="onSessionEnd" returnType="void"
    output="false">
    <cfargument name="sessionScope" type="struct"
    required="true">
    <cfargument name="appScope" type="struct"
    required="false">
    <!--- Update Logged On Status --->
    <cfquery datasource="dsn">
    UPDATE LoginNew
    SET loggedin = '0'
    WHERE username = '#session.loginname#'
    </cfquery>
    </cffunction>
    </cfcomponent>

    siriiven wrote:
    >
    > Any ideas?
    >
    Take a peak at the documentation. It describes all the ins
    and outs...
    you have to do the same thing with application variables as
    session
    variables. The hint being that you are also defining an
    appScope
    argument as well as the sessionScope argument, there is a
    reason for this.
    <quote
    src="
    http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?cont ext=ColdFusion_Documentation&file=00000701.htm">
    Usage
    Use this method for any clean-up activities when the session
    ends. A
    session ends when the session is inactive for the session
    time-out
    period or, if using J2EE sessions, the user closes the
    browser. You can,
    for example, save session-related data, such as shopping cart
    contents
    or whether the user has not completed an order, in a
    database, or do any
    other required processing based on the user’s status.
    You might also
    want to log the end of the session, or other session related
    information, to a file for diagnostic use.
    If you call this method explicitly, ColdFusion does not end
    the session;
    it does execute the method code, but does not lock the
    Session.
    You cannot use this method to display data on a user page,
    because it is
    not associated with a request.
    You can access shared scope variables as follows:
    You must use the SessionScope parameter to access the Session
    scope. You
    cannot reference the Session scope directly; for example, use
    Arguments.SessionScope.myVariable, not Session.myVariable.
    You must use the ApplicationScope parameter to access the
    Application
    scope. You cannot reference the Application scope directly;
    for example,
    use Arguments.ApplicationScope.myVariable, not
    Application.myVariable.
    Use a named lock when you reference variables in the
    Application scope,
    as shown in the example.
    You can access the Server scope directly; for example,
    Server.myVariable.
    You cannot access the Request scope.
    Sessions do not end, and the onSessionEnd method is not
    called when an
    application ends. The onSessionEnd does not execute if there
    is no
    active application, however.
    </quote>

  • I need help with application updates

    My problem  is with applications updateing i changed my e-mail address but my old one still is listed  and i can't update  new applications how can i change that ID

    no iam refering to the application icon shows six updates and  i  touch it and it shows my old e-mail address which is [email protected]

  • Error message "VI is not executable"! Need help with Application Builder

    Hello,
    I have a problem with an application, built with the Application Builder. I have read some threads about the problem I have, but I still don't know a solution.
    When I run my front panel from LabVIEW, everything is good. So, now I created an application (and an installer) to be able to run it on other PCs as well. This application does not work. Everytime I start it on my PC, I get the error "VI is not executable. ...". I read in several forums solutions for this error, but I cannot fix it! I've changed my properties for the builder, but with no success. Perhaps, anybody has more ideas, what's the problem.
    To get a better idea from my project, here a little description of it:
    In the block diagram there is a while loop which is continuously runned. In this loop I only set some properties for the layout of the front panel, such as decorations which will be hidden/shown and changes of colours of indicators... For the rest, it waits for a click on the button "Start" in the front panel. After that, a DLL is called to communicate with a USB device. Some measurements are carried out and the DLL is closed. I hope, you can get a global idea from my block diagram...
    I use LabVIEW 8.5, the DLL is a third-party DLL, which we wrote on our own. But I think the DLL works properly, if it is called from a C# application it works and it works, too, by calling it from LabVIEW when I am in development mode.
    It's a project for university and I'm just a beginner in LabVIEW, so I don't have so much experiences in it, but I think i improved my knowlegde about LabVIEW very well in the last weeks!
    So, i hope to get an answer soon (the deadline for the project is not soooo far away )
    If you need more information, please let it know...
    I would be very grateful if there is someone with a working solution...
    Kind regards from the Netherlands,
    Sebastian

    Sebastian,
    Your architecture makes it very difficult to debug this and other problems.  Does the error message mention which VI is causing the problem?  It is very important to wire your error clusters everywhere.  In LabVIEW, when a node throws an error (Error.Status = T), future nodes do not execute.  At the end, place an error cluster indicator that you can see on your front panel.  When an error posts, you can right click the indicator (even in a compiled application) and select "Explain Error".
    This is a start, but you really need to push this into a queued-state machine before this gets any more complicated.  As it were, if anything in your loop hangs, your whole application hangs.  See attached for a queued-message handler (not advisable for actual applications, but you get the point.  You would want to have a type defined enum in lieu of strings, and shared data between states differently, etc.)
    -Jason
    Message Edited by LabBEAN on 01-20-2009 08:36 AM
    Certified LabVIEW Architect
    Wait for Flag / Set Flag
    Separate Views from Implementation for Strict Type Defs
    Attachments:
    State Machine.vi ‏18 KB

  • Need help with applications

    i am new to mac and i am having some issues. first, where do i find my programs? i just got my mac laptop yesterday with iwork supposildy preinstalled, but i cant find it. well i find an icon with it in applicatins after i had to search the computer for it, but it wont open. it doesnt do anything when i click on it. then i am try to do things in ical and someone told me about a blue button i am suppose to have when i highlight the event, but nothing comes up and i cant delete a calendar i accidentally made. i highlght it on the left and hit "delete' but nothing happends. i read over the turorials for ical and it seems i am missing some buttons. also i am trying to go from day view to weekly and the buttons arent working at the top, either is the today button and the current view is for friday. is something already messed up on my new laptop?
    Message was edited by: Kelly Siech

    Kelly,
    I am thinking that if this is a problem with the program, I am thinking that you have a chance to call Apple, and they can either fix the program for free, or give you a brand new macbook.
    Since you are new, I can help you. Macs somehow are a little more advanced than Windows, because you cannot encounter a virus made for windows. If a virus was to come, it has a high chance to NEVER and I mean NEVER coming into your computer system and destroy your computer. It has to be able to adapt to the programs that Apple has made, and since windows viruses are not compatible with macs they unfortunately will never destroy your motherboard.
    Thats just to tell you, that you don't have to worry about viruses.
    You have to worry about that, you have to be careful on what you do on the internet, there are things that can crash your computer. Thats why, it is better to be using Firefox, you can use the version 2.0.1 or 3.0.
    The new version of firefox is nearly the same as the other version 2.0.1.
    Firefox is a lot better, because.
    1. it is safer and 3rd party cookies and other people are not able to see it.
    2. You can modify what you want. The history can be deleted automatically, when you quit firefox (apple Q)
    3. Nearly everyone who uses Macs, and Windows, can use it, and if you use firefox on a windows, it is the same, there are very high possibilities, that viruses will not be able to break through.
    4. FIREFOX RULES! ^_^
    I feel that I should PROBABLY tell you more, if you don't mind.
    Like if you want to have msn on your mac. DON'T EVER and I mean DON'T EVER download a version of msn that is under the file of EXE. Mac is not compatible with the .exe files. The best thing you can actually go to, is to the apple download site that one that you are on now, but just click on downloads.
    MSN WILL BE AVAILABLE TO DOWNLOAD
    Don't worry, viruses will not be able to come in either. Although the only down poor is that, the mac messenger does NOT have WEBCAM, NO offline messaging, and you CAN'T make microphone chat, or the webcam with microphone chat.. you have to find another program that lets you do that. I use a different type of messenger. Yahoo, you cannot use the webcam for people who are using windows messenger on your yahoo messenger.
    You have to also know that, you can use msn2go.com for messenger when your at a cafe, libraries, municipal airports, mall if possible, nearly EVERYWHERE you can use wireless. It also comes with gigabyte ethernet.
    You might think that wireless is more secure, well it's not. You have to secure the router and put a password on it if you don't want people to get onto the internet, or as people say Hijack or backpack.
    Also you can go to system preferences and go to security, and then there are three tabs. General, fire vault, and firewall. You should just click on the General tab, and click the first one that says DISABLE AUTOMATIC LOGIN. That means that when you setup your password when you did a first boot up, you now do not have to worry about people trying to get into your laptop. So that means when you turn on your laptop, and now you will have your own account, and a guest account if possible, so then now you have to enter your password, and then you will be able to login.
    If you close your lid, your computer will go to sleep, and then when you open up the laptop lid, then you will have to enter your password to. So then you will be able to login... I would not recommend your password being Kelly and your last name in it... put something that you can really remember, and something that is easy like an easy word
    If you need anything else just email me... ****@*.com.
    Have a good day.
    Shang
    <Edited by Moderator>

  • Re-installing OS, need help with applications

    I just got my iMac G5 desktop back from the shop today after having the hard drive repaired. Fortunately, I am good about doing my backups, but I have never had a total hard drive failure before on a Mac.
    I don't want to go through the bother of re-installing every little app if I don't have to. I know I can transfer from another Mac, but is there anyway for me to do the same thing directly with my FireWire external (which is where my backup currently is)?
    Any ideas?

    If your back up is a clone then just go to Application/Utilities and open Migration Assistant and follow the instructions.
    Kevin
    http://bearbyte.blogspot.com/

  • I need help with applications in Mac OS x not opening

    Recently, Applications in OS X haven't been opening correctly, and some browsers arent opening and even crashing.
    I think it started when I installed DivX, but I uninstalled it and it's still not working.
    When I try and open an application, I get a notification like this:
    Please help!

    Disconnect all peripherals from your computer. Boot from your install disc & run Repair Disk from the utility menu. To use the Install Mac OS X disc, insert the disc, and restart your computer while holding down the C key as it starts up.
    Select your language.
    Once on the desktop, select Utility in the menu bar.
    Select Disk Utility.
    Select the disk or volume in the list of disks and volumes, and then click First Aid.
    Click Repair Disk.
    Restart your computer when done.
    Repair permissions after you reach the desktop-http://docs.info.apple.com/article.html?artnum=25751 and restart your computer.

  • Need help with applications for nokia 6280

    Does anyone know where u can get free applications from like games and themes for the 6280.I know u can from somewhere.Any sugestions would be great.

    go to http://java.mton.ru/?content=browse&id=209 most of these games are for siemens s65 but they also can go on the 6280

  • I need help with a VB Application

    I need help with building an application and I am on a tight deadline.  Below I have included the specifics for what I need the application to do as well as the code that I have completed so far.  I am having trouble getting the data input into
    the text fields to save to a .txt file.  Also, I need validation to ensure that the values entered into the text fields coincide with the field type.  I am new to VB so please be gentle.  Any help would be appreciated.  Thanx
    •I need to use the OpenFileDialog and SaveFileDialog in my application.
    •Also, I need to use a structure.
    1. The application needs to prompt the user to enter the file name on Form_Load.
    2. Also, the app needs to use the AppendText method to write the Employee Data to the text file. My project should allow me to write multiple Employee Data to the same text file.  The data should be written to the text file in the following format (comma
    delimited)
    FirstName, MiddleName, LastName, EmployeeNumber, Department, Telephone, Extension, Email
    3. The Department dropdown menu DropDownStyle property should be set so that the user cannot enter inputs that are not in the menu.
    Public Class Form1
    Dim filename As String
    Dim oFile As System.IO.File
    Dim oWrite As System.IO.StreamWriter
    Dim openFileDialog1 As New OpenFileDialog()
    Dim fileLocation As String
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    openFileDialog1.InitialDirectory = "c:\"
    openFileDialog1.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*"
    openFileDialog1.FilterIndex = 1
    openFileDialog1.RestoreDirectory = True
    If openFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
    fileLocation = openFileDialog1.FileName
    End If
    'filename = InputBox("Enter output file name")
    'oWrite = oFile.CreateText(filename)
    cobDepartment.Items.Add("Accounting")
    cobDepartment.Items.Add("Administration")
    cobDepartment.Items.Add("Marketing")
    cobDepartment.Items.Add("MIS")
    cobDepartment.Items.Add("Sales")
    End Sub
    Private Sub btnSave_Click(ByValsender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
    'oWrite.WriteLine("Write e file")
    oWrite.WriteLine("{0,10}{1,10}{2,10}{3,10}{4,10}{5,10}{6,10}{7,10}", txtFirstname.Text, txtMiddlename.Text, txtLastname.Text, txtEmployee.Text, cobDepartment.SelectedText, txtTelephone.Text, txtExtension.Text, txtEmail.Text)
    oWrite.WriteLine()
    End Sub
    Private Sub btnExit_Click(ByValsender As System.Object, ByVal e As System.EventArgs) Handles btnExit.Click
    oWrite.Close()
    End
    End Sub
    Private Sub btnClear_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClear.Click
    txtFirstname.Text = ""
    txtMiddlename.Text = ""
    txtLastname.Text = ""
    txtEmployee.Text = ""
    txtTelephone.Text = ""
    txtExtension.Text = ""
    txtEmail.Text = ""
    cobDepartment.SelectedText = ""
    End Sub
    End Class

    Hi Mikey81,
    Your issue is about VB programming, so Visual Basic forum is a better forum for your case. I moved this thread there,
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • On Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    on Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    The ID Program folder will be relevant to your OS...
    I took a shot and right clicked on my Scripts Samples, choose reveal in Explorer and opened up the ID Program folder.
    As shown, there is a Fonts folder.
    Drag/Copy/Paste fonts to this folder.

  • Need help with a small application

    Hi all, I please need help with a small application that I need to do for a homework assignment.
    Here is what I need to do:
    "Write an application that creates a frame with one button.
    Every time the button is clicked, the button must be changed
    to a random color."
    I already coded a part of the application, but I don't know what to do further.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ColourButton extends JFrame {
         JButton button = new JButton("Change Colour");
         public ColourButton() {
              super ("Colour Button");
              setSize(250, 150);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panel = new JPanel();
              panel.add(button);
              add(panel);
              setVisible(true);
         public static void main(String[] args) {
              ColourButton cb = new ColourButton();
    }The thing is I'm not sure what Event Listener I have to implement and use as well as how to get the button to change to a random color everytime the button is clicked.
    Can anyone please help me with this.
    Thanks.

    The listener:
    Read this: [http://java.sun.com/docs/books/tutorial/uiswing/components/button.html]
    The random color:
    [Google this|http://www.google.com/search?q=color+random+java]

  • I need help with the Web Application Certificate

    Greets,
    The title says it all really. I need help with the Web Application Certificate.
    I've followed the instructions from here:
    https://www.novell.com/documentation....html#b13qz9rn
    I can get as far as item 3.c
    3. Getting Your Certificate Officially Signed
    C. Select the self-signed certificate, then click File > Certification Request > Import CA Reply.
    I can get the certificate in to the Filr appliance but from there I'm stuck.
    Any help much appreciated.

    Originally Posted by bentinker
    Greets,
    The title says it all really. I need help with the Web Application Certificate.
    I've followed the instructions from here:
    https://www.novell.com/documentation....html#b13qz9rn
    I can get as far as item 3.c
    ok when you have you self signed certificate and you requested an official certificate with the corresponding CSR then you just need to go back to the digital certificates console. To import the official certificate, select the self signed certificate, then click File > Certification Request > Import CA Reply. Then a new windows pops out to select the certificate from your trusted authority from your local hard disk. Find the file (.cer worked for me) and click ok. As soon as you do this in the digital certificates console the self signed certificate will change the information that now it is officially signed. Look at the second column and you should see the name of your trusted authority under "issue from"
    I personally had a lot of issues across all platforms. Especially Firefox and Chrome for android. Needed to pack all the root cert, intermediate cert and signed cert into one file and import as CA reply. Not even sure if this is correct now. But at least it works.

  • MOVED: Need help with msi mega 180 + athlon xp-m combo

    This topic has been moved to Overclockers & Modding Corner.
    Need help with msi mega 180 + athlon xp-m combo

    AFAIK, you shouldn't need a pinmod for a Mobile Athlon XP CPU to work in a nforce2 mobo
    did you have any other CPU installed prior to this one? if so, refer here to clear the CMOS: Clear CMOS Guide
    next, refer to your manual, or download from MSI, for location of the FSB jumpers; ensure J8 is shorted across pins 1-2, and J7 is shorted
    finally, enter your BIOS setup menu, and under Advanced Chipset Features, set CPU FSB to 133mhz (or even 166mhz if you have DDR333 memory). the only thing i can't see in the Mega 180 manual is where you set the multiplier...
    which is where the BIOS has limited overclocking features, and you might have a problem here
    i think i'll pass this over to the Overclockers forum, where someone may be able to give a better answer....

  • MOVED: [Athlon64] Need Help with X64 and Promise 20378

    This topic has been moved to Operating Systems.
    [Athlon64] Need Help with X64 and Promise 20378

    I'm moving this the the Administration Forum.  It seems more apporpiate there.

  • MOVED: need help with my k7n2 delta series motherboard please

    This topic has been moved to AMD SocketA based board.
    need help with my k7n2 delta series motherboard please

    "...the other memory ive been using is  memorymaxx 512mb ddr 3200..." If I understood right, your'e actually using both memories at same time so, your'e lucky if it works. We have said thousand times that mixing dif. brand/make/speed memories is a bad idea, most with this Mobo that is very picky about ram. If you want to avoid slowdown problems, stay with only one stick ( the better one ) until you can buy at same time in same store, 2 identical memories to replace the old one.

Maybe you are looking for

  • "end" key doesn't work

    It worked two days ago and now i have to pound it to make it work, and even then sometimes it won't. Any way to fix this on my own, or should i take it to the Apple store? it's still under warranty, so that isn't an issue, if it's gotta be sent away.

  • Instalation Of Business Content

    Hi , Say for example we have Devl system ( Client 101) Prod System ( Client 999 ) The source system for 101 , 999 was created in BW . When we instal Business from BW , How data sources and other will be installed in both systems ( 101 , 999 ) at the

  • How to edit or merge Grande font?

    Hello, I would like to edit the character "1" in OS X font "Lucida Grande". i.e., I would like to replace the character "1" with Lucida Sans font type. Is there any way to do that? Any help or suggestions would be greatly appreciated. Thanks.

  • -bash: fork: Resource temporarily unavailable

    i cannot find an answer or fix to this problem. if i open a terminal as any user (i have a couple of user accounts in case i have problems with one), i get the message -bash: fork: Resource temporarily unavailable first, what is causing this? second,

  • Has anyone else had trouble copying/pasting vectors from AI CC to Microsoft word?

    My jobs requires us to sometimes paste color boxes (as swatches) from Illustrator to Word. It always worked fine with the previous verison of AI. I've done all the new CC updates, however, when I try to paste anything into Word I get a long string of