Looking for DisabledFeatures folder?

I need to install my Server Behaviors Panel on my Window tab.  I understand that this is an extension available for installation from (mac OS 10) Applications>Dreamweaver CC>Configurations>DisabledFeatures.  However, the DisabledFeatures file is nowhere to be found anywhere in my Dreamweaver CC folder.  How might I go about locating these extensions for installation?

I 2nd bregent's reply.  Server Behaviors were removed from DW for good reason.   The old fashioned MySQL connections won't work on servers that have PHP 5.5 or higher.  Many hosts are already using PHP 5.6!   Best advice, learn to code manually with MySQLi (improved) or PDO. 
Read David Powers' book: 
PHP Solutions: Dynamic Web Design Made Easy
Lynda.com structured learning videos.
Connecting to a database with MySQLi from the Course Accessing Databases with Object-Oriented PHP
Nancy O.

Similar Messages

  • When I reinstalled iDVD it asked me to look for Themes folder. l found the folder.  How do I put it on iDVD

    How to I install themes folder to iDVD

    Launch iDVD and go to the iDVD/Advnaced preference pane.  In the Look for my themes in these folders window click on Add.  Navigate to to where the Themes folder is located and select it.
    If it's already listed in the window remove it and then add it back again.
    OT

  • I am looking for: Saved folder search for Mail items (Notes & ToDos)

    The google and Apple website search results take me to the sme portion of OS 10,5's site, There I am told (or read) +"And everything you create in Mail — to-dos, notes, and, of course, email messages — appears in a Spotlight search of your system."+
    Unfortunately, this hs been the case for me and if it truly does work, I would like to make it happen on my computer. Especially after reading this:+Integration with Spotlight, Coverflow. Since all my "stuff" lives in Mail and iCal, it can easily be found using Spotlight. Even cooler are saved Finder searches that display notes and tasks using Coverflow. (I create a tag by adding °, shift-option-8, to key words.)+
    Has anyone else been able to get the mention spotlight functionality? All help will be appreciated.

    Check System Prefs >SPotlight >Search Results. There, you check all the folders or areas that you want to appear in search results. This way, I guess, you can have parts indexed but not usually have to look at matches from those parts when you search, perhaps for speed or keeping down number of hits you have to review. On my new mac, Mail was not checked and I had the same problem. In theother part of the Spotlight Prefs, Privacy, you can exclude areas from being indexed at all.
    BTW, we are mac and mastiffs too at our house, have eleven yr old ENglish Mastiff still holding his own as king of the place.

  • Recovered Photos -- looking for "import" folder

    I have read many threads about opening the iPhoto library, reviewing package contents, finding the "import" folder, etc.  But, all I find is a folder marked "Autoimport."  Is this the folder with the recovered photos?  The folder contains 4,305 images, which is about the same number of photos that I deleted during a massive cleanup effort.  But, I emptied the iPhoto trash and don't know where all these images might come from.

    Old Toad!
    You don't know how helpful this post is. After the 9.4 fiasco I have an 'event' folder with recovered photos that has about 82.000 some pictures in it. They are all duplicates of my originals about 22.000 give or take. This thing is eating up a lot of space and holding down all applications.
    I still think 9.4 stinks. I had to delete the library on my iMac and copy the one from my macbook.
    Spend hours on this, thanks Apple for a premature update!
    Wolfgang

  • When i go to update itunes i get an error message that says "the feature you are trying to use is on a network resource that is  unavailable and look for a folder containing the installation package itunes.msi" but i cant find the folder.

    its really starting to get to me i cant even install a new itunes or delete the last one. please help!

    You're not alone. I'm having exactly the same problem.  I am running Windows XP version 2002 and cannot uninstall Itunes or update.  This problem is affecting my ability to sync music and also with playback.  The support for PC users is severely lacking.  I'm also getting error messages that says an older version of Bonjour cannot be uninstalled.  Help!

  • I have a new Mac book pro- accidentally removed downloads stack from dock - want to restore it --tried looking for home folder and that didn't work

    I accidentally trashed download icon from dock --how do I restore it?

    Your Home folder is located in the /Users/ folder. Double-click on the disk icon on your Desktop. Double-click on the Home folder. Select the Downloads folder and drag its icon into the Dock on the right side of the Dock's sizing bar (next to the Trash icon.)

  • HT1925 I am trying to remove iTunes, but am receiving an error message "The feature you are trying to use in on a network resource that is unavailable."  It is looking for a folder that contains the installation package 'iTunes.msi'

    Can anyone please help me?  I have having difficulty removing iTunes from my PC; this is the message I am getting:

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Query for admin folder ID

    I am trying to query for the admin folder ID knowing only the name of the folder. For example, I have a folder named abc and it is in another folder named xyz. xyz is on the rootadmin folder and I have no trouble retreiving that folder ID when I query. I just can't seem to query for the id of abc.
    I am using the plumtree.server api 5.0.1. Also, the documentation for the Plumtree API overview for .net incorrectly creates a multi-demitional array for objects as
    Object[][] zzz = new Object[3][2]; This is for Java I beleive. To do what you need in C#, do this
    Object[][] = new Object[3][];for(int i=0 ; i<3 ; i++){   zzz[i] = new object[2];}
    This creates an array that can be passed to the API.
    public int SearchFolderID(string folderName){IPTAdminCatalog ptAC = (IPTAdminCatalog)objSession.GetAdminCatalog();IPTAdminFolder rootFolder = ptAC.GetRootAdminFolder();//This will be returned if not found.intfolderID = -1;//This will limit the query results to just the property ID and the name.intnPropertiesToQuery = PT_PROPIDS.PT_PROPID_OBJECTID;Object[][] filter = newObject[3][];for(inti = 0; i<3;i++){      filter[i] = newObject[1];}filter[0][0] = PT_PROPIDS.PT_PROPID_NAME;filter[1][0] = PT_FILTEROPS.PT_FILTEROP_EQ;filter[2][0] = folderName;
    IPTQueryResult ptResult = rootFolder.QuerySubfolders(nPropertiesToQuery,1,0,0,-1,filter);
    if(ptResult.RowCount() >= 1){     for(inti=0;i<ptResult.RowCount();i++)    {          folderID += ptResult.ItemAsInt(0,PT_PROPIDS.PT_PROPID_OBJECTID);    }}
    returnfolderID;}

    I think that the code below has a bug. When it looks for a folder, it ONLY looks for folders that are a direct child of the root folder. The line:
    IPTQueryResult ptResult = rootFolder.QuerySubfolders(nPropertiesToQuery,1,0,0,-1,filter);
    will perform a query that returns all DIRECT CHILD subfolders of the ROOT folder that have the indicated name. In your example, this will work for the folder called "xyz", but will NOT work for the folder called "abc", since the abc folder is not in the root folder.
    One option would be to do this search recursively. First, find the folder object called XYZ in the root folder. Then open that folder object. Then using THAT object, call QuerySubfolders on it, something like:
    XYZFolder.QuerySubfolders(nPropertiesToQuery,1,0,0,-1,ABCfilter);
    This will require some substantial changes to your code, I think, because you'll have to record the intermediate folder objects somewhere (i.e. in your current code you never open the XYZ folder, but this change would necessitate making calls on that object.) You'll probably want a function that takes in an AdminFolder object and a subfolder name, opens the subfolder, and returns it. Then you can call that function repeatedly, walking down the folder path.
    P.S. There's another thing I don't understand about your code. Your code does "folderID += ...", but why would you want to increment the folderID? Shouldn't it read "folderID = ..."?

  • Looking for Sync utility like Beyond Compare

    I'm looking for a folder/file synchronization utility like Beyond Compare (which is a Windows-only product). Beyond Compare has a few features that make it outstanding. I know of no Mac synchronization utilitiy that has all of these features:
    1) You can set up compare sessions with individual preferences for each.
    2) The individual preferences includes a list of file/directory names to be ignored.
    3) You can perform a compare and have it display the differences.
    4) I can dispatch file/folder moves individually and instantly.
    5) It can display differences of files (binary or text).
    The 4th item is key. While I'm displaying differences, I only see the differences. It could be dozens or hundreds or thousands of files and folders. If I conclude that folder97 needs to be sync'd to the right, I select the command from a pop-up menu and it syncs to the right and disappears off of my display as it is no longer a difference. As I go through the differences one by one, they disappear off of my screen. This goes on until I have resolved all of the differences.
    Beyond Compare is extremely powerful, flexible and intuitive. It should be a Mac app. I just wish there were something on the Mac like it.

    There is actually. It's called chronosync:
    http://www.econtechnologies.com/pages/cs/chrono_overview.html
    it does everything you listed.

  • I desperately to uninstall adobe reader from my Mac book air. I sent adobe reader to trash and afterwards look for internet plugs in in library but the folder is empty. Can anybody help me?

    I desperately need to uninstall adobe reader from my Mac book air. I sent adobe reader to trash and afterwards look for internet plugs in  library but this folder is empty in my library. Can anybody help me?

    I looked for plugs in in my library but the folder internet plugs in is empty

  • Problem with my program looking for the settings file in the wrong folder

    I have been writing a simple FTP file uploader, what I want to do is be able to select the files I want to upload in windows explorer and then right click and click the menu item and it launches the program and passes the files paths that I have selected to it.
    So I use this in the windows registry "C:\Program Files\Java\jre1.6.0_03\bin\java.exe -jar D:\BenFTP\BenFTP.jar %1"
    It launches fine and has no problem finding the files I want to upload. The problem is that it tries to look for the settings file in the same folder that the file I am try to upload is in. Which it's not suppose to do since the settings file is in the same folder that the .jar is in.
    Edited by: ColNewman on Feb 5, 2008 6:55 PM

    So, you're looking for your settings file in your current working directory. There's no way to set the CWD in your registry entry (is there?) so that isn't a practical thing to do. Presumably you're using a File object or a FileReader or something? Can't do that.
    One alternative is to look for the settings file in the classpath. You can get a URL to a file in the classpath like this:URL settings = this.getClass().getResource("/settings.xml");Or you can get an InputStream to read the file by using the getResourceAsStream method. You would have to make sure that your executable jar file contained a Class-Path entry that specified the right directory, because the directory the jar is contained in isn't automatically in an executable jar's classpath.
    Another alternative is to ask the user where the settings file is supposed to be, and put an entry in the Preferences (java.util.prefs) to remember that location.

  • Looking for a app or vault to put entire contact and message folder in and lock it.

    Looking for a app or vault to put entire contact and message folder in and lock it.

    That's not possible with iOS. Sorry.

  • I am looking for a specific photo in my event folder, it does not show up, yet when I use the search feature, the photo is there.  Why doesn't it show up in the folder?

    I am looking for a specific photo in my event folder, it does not show up, yet when I use the search feature the picture is there.  Why doesn't it show up in the folder?

    What system and iPhoto version are you running?
    If your're using iPhoto 9 or later  Command (right) - click on the photo in the search window and select Show Event in the Contextual menu. 
    That will take you to the event where the photo is.
    OT

  • I have just recently bought a MacBook Air. I am looking for an email which I put into a folder on my Mac Pro. The smart folders have come across to the Air, but not the 'On my Mac' folders. Are they lost?

    I have just recently bought a MacBook Air. I am looking for an email which I put into a folder on my Mac Pro. The smart folders have come across to the Air, but not the 'On my Mac' folders. Are they lost?

    Are you sure that the "On My Mac" folders weren't empty? If all your mail accounts are IMAP, they may have been.

  • Time Machine on my iMac won't open iPhoto. It goes to desktop screen automatically. When I select User/Picture/Iphoto library it only brings up the preview page with the size of the folder. I can't get into the library to look for lost photos.

    Time Machine on my iMac won't open iPhoto. It goes to desktop screen automatically. When I select User/Picture/Iphoto library it only brings up the preview page with the size of the folder. I can't get into the library to look for lost photos.

    Thank You. This helps me alot to get into the masters and to see events and photos in a utilitarian way, but it is not as easy as viewing the normal iphoto format to find photos.  Can I do something else or did I not do something right to not see normal iphoto in Time Machine ?

Maybe you are looking for