Default Apache dbm file type under Portal??

hi,
I'm trying to find out how Apache was compiled in the default Portal 9.0.2.6 install. In particular, I'm trying to use a hash file in combination with a RewriteMap for mod_rewrite use, but I need to know what type of HashFile Apache was compiled to be able to use.
Does anybody know the default type of db file Apache under Portal expects, or where I might find this information documented?
thanks....

Just for closure this issue has been resolved now. I did not change my PC, just reverted back to using XP for a while. Tried again on Win7 recently and the vids play back perfectly fine. Update from windows rather than adobe may have fixed it as Idid not recall an adobe update being installed.

Similar Messages

  • New computer ff install not listing all file types under tools-options-applications

    New windows installation on another with the same version of ff (10.0.2). Clicking local .pls files in this machine gives option to launch VLC media player but on other computer just text appears.
    The extension appears in the applications tab after clicking tools and options on this computer, but the list is far shorter on the other machine and does not include this extension. Is this rectified by installing a plugin? If so which one?

    The issue isn't that VLC isn't playing the files- it is... but linking to the files saved on my system does not launch VLC from Firefox on the other computer like it does on this one. I've actually been able to add to the applications list. Technically I can run the same apps and associations on both machines except that Firefox isn't handling the ".pls" files at all with the other machine
    I've saved a directory structure with .pls files to different streaming radio stations and the directory is linked to from Firefox on both computers... identical directories and files stored. When I bring up one of the folders in this machine and click on the file, I first get the same dialog as you attached- I launch VLC by selecting "Open with" then clicking OK. The radio station plays. I've set it to change stations when I click within the iframe without having to go to VLC and use the open media feature- it does the trick with a single click from Firefox,
    The other machine when I click the file the iframe in which the directory was displayed shows text information (urls and other arcane digital nonsense) as though the file were a text file. Both machines have similar installations.... I do not want to overload on the other machine- it's my communications backup but I would like this arrangement to work as it does on this computer.
    Again, the biggest hint I see is the absence of the ".pls" file type in the list under the "applications" tab after clicking "Tools"-"Options" in Firefox on the machine in question.
    Can something be done either by transplanting missing files from one machine to the next or from about:config to induce the desirable result from the other machine in Firefox?
    .

  • Isit possible to change the default save as file type settings?

    Hi,
    I would like to set the default "save" and "save as" file type to "PDF /A" instead of the default "PDF" due to compatibility issue with some of our systems. Can this be done?
    So when a user click on the save button at the top it auto save as "PDF /A" and when the user select save as the default selection will be "PDF /A" ?

    Dave,
    Did you ever find an answer to this? We are having the same issue.
    Thanks,
    Mike

  • Why won't Windows 7 permit my CC programs to be the default programs for file types?

    I just uninstalled all of my CS6programs to free up disk space. But now....Windows 7 will not associate JPG, JPEG, GIF, TIFF, INDD, etc. (the typical file types) with my CC programs, -- all of the file types which had previously been associated with my CS6 programs!! Don't misunderstand: I can open the actual file(s) just fine from within the programs themselves, but if I am browsing through my folders, and select a file and try to open from Windows Explorer, it has now been associated with Windows Photo Viewer. And when I try to manually associate the file types with my CC programs, not only are the programs not amongst the choices, Photoshop and InDesign won't remain as my chosen program when I browse through to fine the EXE file!! This is NOT good. This is going to seriously eat into the efficiency of my work flow.

    Windows only stores a file type connection for one application. It sounds like your installation of the CC apps didn't update the file type to themselves so when you uninstalled your CS6 apps, Windows just disconnected the association of the file types completely.
    What you'll need to do is either reinstall the CC apps to make the connection again or you can manually reassign the file types to the associated program. Watching the video here, http://windows.microsoft.com/en-us/windows7/change-which-programs-windows-uses-by-default, will show you how to change the file associations.

  • Reset Default applications for file types

    Hi:
    How do I change which applications open when I double-click a particular file type? For example if I want Pages to open up .docx files instead of MS Word. How do I set that up?
    Thanks
    Janet

    Highlight any .docx file by clicking on it once and then press Command+I. Under the Open with section, click on the drop down menu and select Pages. If Pages isn't a choice, then select Other at the bottom, navigate to the Pages app and select it. Then click on the Change All button.

  • Setting Default applications for file types

    I recently got NeoOffice for my mac and im trying to set file types to open automatically instead of CTRL clicking then open with then the program. Ive had trouble with that to recieving wrong types of files from people on aim and then having to open it with iphoto
    please help

    I'm using 10.4.9 and there is no "Change All"-Option. There is always a checkbox "Always Open With", but it is only related to the single selected file. On a second Mac (same OS version), there is the same behavior.
    Bug???
    Powerbook G4   Mac OS X (10.4.8)  

  • Can I programmatically force saving an XLTM template to save as an XLSM file in Excel 2010 without defaulting all Excel file types?

    I created an Excel template which includes VB and macros as an EXCEL.XLTM template file (I used a template file to keep users from overwriting the sample template file), but I have noticed that when users save the template, Excel 2010 defaults to saving
    the new file as a XLSX file (removing all the macros).
    I know you can set Excel 2010 to always save as a certain format, but I really would prefer not forcing all Excel files to be macro enabled for the user
    Is there a way to default the Save type to XLSM for this template only?  Like some code that I could put in that when the users saves, it saves as a macro enabled XLSM type only for this template file?
    My users aren't exactly Excel savvy, so I wanted to make it as simple as possible for them.
    Thanks!
    Alan Edwards

    Hi Alan,
    >> Is there a way to default the Save type to XLSM for this template only?  Like some code that I could put in that when the users saves, it saves as a macro enabled XLSM type only for this template file?
    In my option, you could achieve this by adding Application.GetSaveAsFilename Method to the workbook BeforeSave event. Some key code like below:
    Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Dim FileNameVal As String
    If SaveAsUI Then
    FileNameVal = Application.GetSaveAsFilename(, "Excel Macro-Enabled Workbook (*.xlsm), *.xlsm")
    Cancel = True
    If FileNameVal = "False" Then 'User pressed cancel
    Exit Sub
    End If
    ThisWorkbook.SaveAs Filename:=FileNameVal & ".xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabled
    Application.EnableEvents = True
    End If
    End Sub
    But there is a limitation of this workaround, in this workaround, the save as will only support the macro enabled type, other save as types like "xlsx" will be ignored.​
    For more information about Application.GetSaveAsFilename Method (Excel), you could turn to the link below:
    #Application.GetSaveAsFilename Method (Excel)
    https://msdn.microsoft.com/en-us/library/office/ff195734.aspx
    Best Regards,
    Edward
    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.

  • Binary File Type in Portal 3.0 Form

    Has anyone successfully created a form in 3.0.7 for inserting BLOBs as part of a table record?
    I recently observed that the form wizard now includes a binary file field option. WebDB did not support this.
    Does this feature allow the blob object to be saved into any table w/o separate DAD management?
    Thanks,
    James

    Surprise Surprise !!!!!!!
    I made a copy of the "Oracle Portal Home Page". In that copy, when I switch language to french in any sub page ("Build" page included), It works perfectly !!!!
    Can I have explanations of what occued exactly ?
    Thanks a lot.

  • I want to change the default file type in the Open File dialog - e.g. from Word to All Files

    I want to change the default file type in the Open File dialog - most recently specifically in Adobe Acrobat, from Adobe Files to All Files, so I don't have to do it again and again manually.  Is this possible?  Is it an OS setting or an app-specific setting?

    The Apps set the default to the file type it can open, sort of. However, there normally isn't a type specified. All document types that the app can handle will be offered.
    Adobe, and Microsoft, tend to roll their own dialogs, so they may not be standard. I don't have Acrobat, so I can't verify that. If Adobe is puting a file type selector in their open file dialogs, it would be up to them to store the preferences.
    EDIT: I checked Reader, and i see what you mean. Not terribly useful.
    Message was edited by: Barney-15E

  • How to save as Excel file type?

    There were no Excel file type under the "Save As" function.  Is there anyway to include Excel file type under this list?  Snapshot attached. 
    Solved!
    Go to Solution.
    Attachments:
    Export_file_types.png ‏28 KB

    Hi NiCoder,
    You have a numer of different options to get data from the DIAdem Data Portal to Excel:
    1)  Save to TDM or TDMS file and use the free TDM Excel Importer to load the data into Excel
    2)  Save to CSV file and use Excel's built-in ASCII file import feature to load the data into Excel
    3)  Load the gfsexcel.dll GPI-DLL and use the "File >> Save as..." option to export an *.xls data file
    4)  Use a custom VBScript to automate any of the above 3 options
    5)  Use a custom VBScript to directly send each Data Portal data channel to a column of values in Excel via ActiveX
    Options 1) and 2) are easiest if you want a purely interactive solution.  Option 1) will export all the data values as well as all the properties.  Option 2) will export all the data values and the name of each channel in the Data Portal, but none of the other properties.  If you choose to use option 3), know ahead of time that this feature is limited to 255 columns and will not export any custom properties, just the properties that existed back in DIAdem 8.1.  Option 4) can add in all the custom properties that are missing in option 2).  Option 5) can export all the data and all custom properties, but it is also the slowest option and involves the most programming.
    Let me know what sounds best to you,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Creator Codes and File Types

    I'm on my first day with Snow Leopard and a brand new iMac. So far, so good. But I had this great little AppleScript droplet that I used all throughout Mac OS X 10.0 to 10.5 which allowed you to drop a jpeg file on it which was created in PhotoShop and it would change the Creator Code and File Type so that it would default to opening in Preview. But it doesn't work under SL now. Has something changed with Creator Codes and File Types under SL? Maybe there's another way to do this? I sure miss it - these little things that you use every day and then all of a sudden, you can't use them anymore. Any suggestions or workarounds?

    Creator codes are totally deprecated in snow leopard. as for a workaround you can use something like this.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on open these_items
    repeat with this_item in these_items
    tell application "Finder"
    set the_file to POSIX path of (this_item as alias)
    tell application "System Events"
    set default application of file (the_file) to ("Main HD:Applications:Preview.app" as alias)
    end tell
    end tell
    end repeat
    end open</pre>
    save it as an application and drop files onto it to set them to open with Preview.

  • All My Files not displaying all file types

    So, as above, in Finder using the default display by file type, the only results I see are for Spreadsheets, Developer and Documents.
    No seperate lists for PDFs, Images or any other file type.
    Looked in preferences but can't seem to see any place where this might be enabled.
    Glum...

    Here's another data point:  I found some PDFs under my Documents folder that weren't showing up in AMF.  I found that simply opening one up in Acrobat Reader would cause it to show up in AMF (I didn't have to change and re-save the PDF). 
    I did notice that if I selected multiple PDFs at once and opened them all at the same time, some of them would then appear in AMF, while others wouldn't.  But opening up a single PDF by itself would always add it to the files shown in AMF (as long as the PDF was somewhere under my User folder - if I first copied the PDF to a second hard drive that's not under my User folder and *then* opened it, it still wouldn't show up in AMF.)
    In short, here's what I've discovered so far:
    1)  AMF doesn't seem to index anything that's not somewhere under my User folder.
    2)  Not everything under my User folder shows up in AMF, but if I open a "missing" file that's under my User folder, it will then show up in AMF. (Except for pictures and songs - see #3)
    3)  AMF doesn't index anything that's in my iPhoto or iTunes libraries (even after opening a picture in iPhoto or playing a song in iTunes.)
    4)  AMF doesn't index attachments to Mail messages unless you download the attachment (presumably because it's then stored under your User folder.)
    5) AMF will only seem to (sometimes) index Excel spreadsheets if they're saved as .xlsx files.  Even opening, changing and saving a .xls file won't get it to show up in AMF afterward.  Spreadsheets are strange, in fact.  Even with some .xlsx files, they'll show up in AMF *while I have them open in Excel*, but as soon as I close them in Excel, they disappear from AMF again.  This is the only types of file I've seen disappear from AMF after they've shown up once - all the other file types seem to stay in AMF once you can get them to show up there.

  • Making Adobe 7.0.5 the default for .pdf files

    I was advised that the way to get Adobe 7.0.5 to be the default, instead of 5.0, was to delete the Adobe applications & files in my system, library, and user folders, including the 7.0.5 app. itself. Then, after everything relating to Adobe is gone, I should re-install 7.0.5 and it would become the default.
    I also heard that Spotlight won't find every Adobe component or extention, so I'd have to do a detailed search and delete each one that way.
    Does this sound right?
    Can't I just delete the 5.0 folder in the Applications (Mac OS 9) folder and have everthing associated with 5.0 gone? Isn't that the beauty of having a Mac?
    Thanks,
    Greg
    PowerBook G4 15"   Mac OS X (10.4.2)   1.5 GHz, 1.5 GB RAM

    Hi Greg
    You were poorly advised. Deleting Adobe apps is a headache and completely irrelevant when it comes to making an app the default for a file type.
    Control-click a .pdf file, choose Get Info. In the Info window click the Open With drop down list, choose the app you want, and then click Change All underneath it.
    That should do it. You might find that there is more than one type of .pdf file and you might need to perform this action again at some time, but this should do the job.
    And yes, you can just delete the Acrobat Reader 5.0 folder.
    Matthew Whiting

  • Unassigning file type to application

    I would like to find a safe way to restore the default assignments between file types and applications. For example, when trying to open a certain file type for the first time, I ask for "Get Info" on the file and it says open with <None>. Or if I double click the file, it asks what application I want to use.
    Now assume I tell it an application to use. From then on the system will use that application for that file. Is there a way to "undo" that assignment without selecting a new application?
    In other words, how can I get the system to go back to thinking there is no application assigned to that file or file type?

    Have you ever tried this?
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger and Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger, and 4.1 for Leopard) and/or TechTool Pro (4.6.1 for Leopard) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    Then after the above download a utility such as TinkerTool System - VersionTracker or MacUpdate - and use it to clear user and system caches and old log archives. Then reboot the computer.

  • File type icons in CS6 Design and Web Premium

    Hello everyone.
    I am running Windows 7, 64 bit. I have recently upgraded from CS5.5 Design Premium to CS6 Design and Web Premium.
    I the process, I lost the association of file types (such as .psd) with their relevant programs, which I have now recified.
    However, the filetype icons that are associated with each program, in most cases, don't seem to have assigned themselves to their respecitive icons. For example, .psd files now show as a white document with the blue Ps square icon in the centre, and the same for InDesign etc. Oddly, Illustrator has worked and has assigned it's icons correctly.
    For example:
    I can't find a method of editing specific file types icons - even then, I wouldn't know where to find the particular icon sets.
    Any ideas?
    Thanks in advance either way.

    I used the CS Cleaner (http://www.adobe.com/support/contact/cscleanertool.html) and followed the steps its really easy.. but ur gonna have to re install you Creative Suite   all u do for the cleaner is open it up then select english (e) ->enter->Agree (Y)->enter->All (1) (which is the first option for a full clean i guess)->enter->Product Number its just basically asking you to input your choice number again (1)->enter and should tell u its all done then after u install CS again go to start-> default programs->associate file type->.psd for example->double click it and select Photoshop even though its probably already selected >.< but just do it again cuz it will refresh all the files on the coputer and whala you should c the correct file dysplay Heres pictures of my files before and after as proof

Maybe you are looking for

  • CO- issue - Very Urgent

    My client is having the following issue: In one of the plants, they set up a production order incorrectly so they want to close it, they’ve settled everything off and they are trying to close it but they get an error when trying to close "There are s

  • Cannot Use iPOD at all

    I am unable to use my iPod (Nano 2 GB). I have already attempted to reset, retry, restart, reinstall and restore, all to no avail. Further, I have updated software installed. For whatever reason I am unable to navigate past the main screen. The devic

  • Invalid path /actions/register2 was requested

    Hi , I am new in struts, I following the guide in http://www.coreservlets.com/Apache-Struts-Tutorial/ and always got error The request sent by the client was syntactically incorrect (Invalid path /actions/register2 was requested). I havestruts-config

  • Can you schedule pages to load at a specific time?

    Is it possible to schedule a page to load at a specific time/date? For example, I need my home page to update at 9am on Friday, but I will be out of the office at that time, can Dreamweaver do it for me automatically? I am using Dreamweaver CS3 on a

  • Assign components to TaskLists

    Dear all, I need to assign components (materials) to task lists. The task list is for an equipment that is assign to a Maintenance Planning Plant. When i put some materials into the task list (button "Component") the system tells me that the material