Add a script to CFIDE/Administrator and run it?

Hello, everyone,
Is it possible to add a script (.cfm file) to /CFIDE/Administrator and run it?
I've got a script that is used for reindexing and optimizing a small set of Solr collections, and the PTB do not want it publicly accessible (even though it will never touch a database, and I have conditions set so that only one of us can run it), so they are asking if it can be run from within the protected /CFIDE/Administrator folder.
I copied my script (and an associated .gif image) to my local CF server /CFIDE/Administrator folder, but I can't run it.  Every time I browse to it, I get redirected to the login page.
V/r,
^_^

To be quite honest, WolfShade, even if it should work, I would strongly advise against it. /CFIDE/Administrator/ is a system directory. As such, it should contain no custom user scripts.
A solution is possible that involves putting the script and GIF in a directory elsewhere in the web root. You could, for example, implement authentication in the directory or exclude its path in the web server settings. You should revisit the subject with your PTB and discuss these possibilities with them.

Similar Messages

  • OBIEE 11g write back to Essbase and run calc script feature

    Hi,
    I have a requirement to write back into Essbase Cube and run calc script from OBIEE dashboard.
    From what i have search on google, we must deploy additional Java Script into weblogic, but that is before OBIEE 11.1.1.6.
    I have 2 question:
    - Does OBIEE 11.1.1.6 already supported native write-back to Essbase and running calcscript?
    - Anyone has example of the custom java-script for write back and running calcscript?
    And another, if there are requirement like this, is it better to install Essbase Add-in on Microsoft Excel and do the what-if analysis there, then just display the report on OBIEE dashboard? (based on user-friendliness and the complexity on maintenance)
    Thanks in advance.

    Hi,
    Even I am trying to achieve the same thing as you have mentioned but think that it is not possible to achieve easily in obiee 11.1.1.6, though we do have a work around to perform a writeback in Essbase cube using JAPI as mentioned below.
    Also we can call Hyperion reports from OBIEE using Action Links and also pass parameters to the same but dont know if it runs calculation script.
    Below link could be useful for you for write back workaround.
    http://oraclebizint.wordpress.com/2009/05/25/oracle-bi-ee-10-1-3-4-1-writebacks-to-essbase-using-japi-and-custom-html-part-1/
    Let me know in case you have found out anything else related to same.
    Thanks,

  • Windows Media Player Extension "Add-on for this website failed to run" except for Administrator

    This is on a Windows server 2008 r2. I am trying to allow users to watch help videos at a vendor site. If I remote desktop using the Administrator, I can play the videos and if I check the "manage add-ons", I see Windows Media Player as an extension.
    If I remote desktop on as a "normal user" and try to view the same video, I get the error message "An add-on for this website failed to run" and if I check the "manage add-ons", Windows Media Player extension is not there. That
    makes sense, since if it is not there, it won't run.
    Why isn't Windows Media Player extension showing up in IE 10 on the server for anyone other than Admin? How could I make this work? If I am somehow preventing this from taking place, where would I go on the server to change that?

    Hi,
    Have you try adding this video website into trusted sites zone or compatibility view list?
    Generally, improper security settings may casue failure to run some add-ons. So, please attempt to  decrease  security level for Internet Zone to check if this issue still occurs.
    How do you think your issue is related to Windows Media Player extension? Based on my knowledge, Flash player plug-in can lead to the problem. Please reinstall your flash player for the current user.
    Also, Please check in event log for more clues.
    Andy Altmann
    TechNet Community Support

  • Perl Script to Verify a Database is up and running

    Hi there,
    Can any one suggest a way how to verify if the database is up and running from unix using a perl script? If not ,ofcourse the script will fail. Getting the following error ..
    ERROR: ORA-12203: TNS:unable to connect to destination
    Any suggestions are most valuable to me.
    Thank you,
    Kiran

    Cant we test it with any user other than sysdba? Yes..
    $dbh = DBI->connect("dbi:Oracle:", 'some_user', 'password') or die "Connect E
    rror $DBI::errstr\n";
    can we add this in the existing perl scripts? yes you can but DBI and DBD::Oracle need to be added to perl
    How to execute this? Create a script with your perl code and make it executable e.g. chmod 700 myscript.pl
    How do we know we have DBI module is present to use it? Once you create a script and try to execute it you will get errors on your use DBI statement.
    DB server and unix should be on the same machine right? In this example yes... But you can connect to any db through sqlnet using the tnsnames or with DBI you can do dynamic connections as well. So it will completly bypass tnsnames.ora.
    I would strongly suggest looking at "programming the Perl DBI"
    HTH
    Frank

  • Set env using a script and run the command (dependency on the env)

    I need to set the env varaible by running a shell script with arguments as 'ksh setEnviron r6.1' and then run the command in the
    same process. the command has dependency on the previous script which sets the env variables.
    With Runtime.getRuntime().exec( cmd1); ,Runtime.getRuntime().exec( cmd2); I am not able to execute the Cmd2 as it is running in different process.
    How do solve this issue.
    Is there any other method to run the command to set env variables and run the second command.(dependent on the env) to get the output.
    Please help me out in this.

    ganesh_mak wrote:
    final String[] commands = {
                              ". setEnviron r6.1",
                                "/usr/add-on/test/Xbin/sql name from list where date.eq.05/22/08",
    Process penv = Runtime.getRuntime().exec("/bin/sh");
    BufferedReader br = new BufferedReader( new InputStreamReader( penv.getInputStream() ) );
    BufferedReader stdError = new BufferedReader(new InputStreamReader(penv.getErrorStream()));
    final OutputStream writer =  penv.getOutputStream();
    for (int i=0; i<commands.length;i++)
         writer.write(commands.getBytes("utf-8"));
         writer.write("\n".getBytes());
    String line;
    while((line = br.readLine())!=null){
    System.out.println(line);
    br.close();
    writer.close();
    I tried the above code but its not working...............
    please correct me.
    Do you think I used the '-i' argument just for fun? Did you do a 'man sh' and 'man bash' to see what the arguments do? If not then do it now.
    Do you think I used Theads to process stderr and stdout just for fun? I've shown you the basic approach. I have shown you how you need to create Threads to process stdout and stderr. If you have not understood and you have not studied http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html then do so now.
    Edited by: sabre150 on Jun 2, 2008 3:43 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Send to VRU and Run Ext Script

    Hi All;
    I am adding a new vxml browsers and I need to send some calls (based on If statement) to those vxml browsers, so I added a Network VRU (with a new labels) and I added Network VRU script and at the ICM script, I placed if statement and based on it I am using Run Ext script which use the required Network VRU Script. But the problem I am facing it, that still the returned label for the CVP is the same label that is used with the original VXML browsers ! How I can resolve it.
    I tried to set the default network vru (at the PG configuration) to be this new Network VRU, but still it is returning the original label that is used to send to the original VXML browsers.
    How I can resolve this label issue and let the returned label to be 8333333333 instead of 8111111111 (ofcourse this in case the Run Ext Script was calling the new Network VRU Script, but if the Run Ext Script was the current Network VRU, then to return the label 8111111111)? How to do this
    Kindly give a look for the pictures of the configuration and some logs that help.
    Regards
    Bilal

    Hey Bilal,
    Ok, it's actually quite difficult to single out a gateway or a couple of gateways on a per-call basis 'the right way'. Once you add a gateway to your Gatekeeper, SIP Proxy or Static Routes setup, you'll have a round robin mechanism that's pretty much not changeable on a per-call basis.
    If it's just to test these gateways for a limited period of time, try this :
    Open Configuration Manager - ICM Instance Explorer;
    For your Instance you should have one Customer Definition with the same name, add a second Customer Definition, i.e. 'Test';
    Now go to the Next VRU Explorer, add a new Type 10 VRU, and give it a (slightly) different label from the normal one, define the Customer as 'Test';
    Go back to the Customer Definition and assign your new VRU to that Customer Definition;
    Create a new test Dialed Number for your existing Routing Client and be sure to pick your 'Test' customer, continue to create a Call Type, Script and Network VRU Scripts as you always would;
    Route the new Label only to your new gateways.
    You would remove all of this configuration and make the new gateways use the same labels as the others once you are ready to put this in production, But it will at least allow you to route some calls through them.
    Note: you may be able to do all the same things but using your existing Network VRU, just adding a new label to it for your newly defined Customer Definition. I'm not sure if ICM will pay attention to the Customer when picking a label for a Network VRU.
    Cheers,
    Kris

  • TS1702 Hello I would like to report game loft order and chaos that's I but rune stones buy my visa around 300 usd and runes was on sale but thy don't add the rune stones it's 5700 Rune stones  I report to game loft 6 time and thy ignore me I'm here to Com

    Hello I would like to report game loft order and chaos that's I but rune stones buy my visa around 300 usd and runes was on sale but thy don't add the rune stones it's 5700 Rune stones  I report to game loft 6 time and thy ignore me I'm here to Complaint that to iTunes I wish you help me for this complaint cause this game loft always ignore people only take moony and no replay . Ty

    You are not addresing Apple here. Were are all just users like yourself. Contact Apple/iTunes by:
    How to report/refund an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase

  • Script to open INDD files, run script, and close

    Hello, I'm looking for a script that will open a folder of Indesign files, open each one, run a selected script, then close each file.
    RIght now I'm using the Batch convert script, to convert INDD to INDD and run the script in between (then I delete the extra INDD file). But I'm trying to eliminate the conversion element, just need the script part of it.
    Anyone have any help? Thanks.

    Here's my whole code if it helps. I'm wondering if the script is moving too fast. I think that the first files are still PDFing while the others are opening and closing. Could that be it? I'm not sure why else the for loop for the PDFing is only working on the first file.
    var myFolder = Folder.selectDialog("Select Input Folder");
    var myIndsnFiles = myFolder.getFiles("*.indd");
    var exportPath=Folder("/").selectDlg("Select PDF output folder:");
    var pdfPreset = "Press Quality";
    for(k=0; k<myIndsnFiles.length; k++)
        app.open(myIndsnFiles[k]);
        var jobNumber = "12345";
            for (aPage=0; aPage < app.activeDocument.pages.length; aPage++)
                app.pdfExportPreferences.pageRange = app.activeDocument.pages[aPage].name;
                app.activeDocument.exportFile (ExportFormat.PDF_TYPE, File(exportPath+"/"+jobNumber+"_"+pad(app.activeDocument.pages[aPage].name)+".pdf"), false, pdfPreset);
                function pad (n) {
                return ("00000"+n).slice(-3);
    app.activeDocument.close();

  • I want to get my parents setup with an imac and iPad.  They are elderly and we live in different countries.  I want to know what solution exists so I can be the remote administrator to maintain and keep them up and running .. I dont want anything fancy.

    I would like to setup my eldery parents with an imac and ipad which I know will greatly help them in their daily life.  The technology they love to play with whenever I visit, but they can never keep anything running or sync'ed unless I am around.  Medical and other issues make this a real challenge for them.  Unfortunately, I live in a different country and see them maybe once per year.  I'm surrounded my apple products but never tried remote administration and wondered what I would need (software and hardware) to make this noble venture sucessful.  Anyone out there has some experience or recommendations?  I'm looking for something that is simple and reliable to implement ...

    JokerGirl,
    This is Scott J, I work for Intel and wanted to try and help you out. Sorry to hear about your current PC and your knee!
    I agree with the bigger screen. I have the Samsung ATIV Smart PC with a screen 11.6" which is great to watch shows/movies!  anything bigger is almost too big for a tablet (personal opinion).
    Yes, most if not all tablets will have speakers and a headphone jack
    You can watch YouTube
    Only certain models have keyboards, you will want to specify this when making a purchase. Note: most keyboards are sold separately.
    Covers are usually pretty easy to come buy, as well as screen protectors (clear plastic that covers and protects your screen from scratches, etc.)
    Depending on the Operating System (Windows, Android, etc.) you will have access to an app store where you can buy and download content. Alternatively you can access your favorite sites to read news, get books, magazines, etc.
    Hooking things to your tablet - different tablets will have different ports (USB, HDMI, etc.) Question to ask prior to making a purchase as some do not have ports (iPad). Back to my Samsung, I have several ports and do hook it to my TV
    Tablets can run anywhere from $150-$1,000.  The mid-range $400-$700 should fulfill all of your needs above and more!
    Here's an article that might help you narrow down your search: http://electronics.howstuffworks.com/gadgets/high-tech-gadgets/5-tips-for-choosing-the-right-tablet....
    Happy Holidays!
    Scott
    #IntelTablets

  • Hi, I am unable to install new itunes version to windows 7 PC.  It requires application support and gives windows error 2.  I have tried to save on desktop and run as administrator but errors remains, what other options do I have

    Hi, I am unable to install new itunes version to windows 7 PC.  It requires application support and gives windows error 2.  I have tried to save on desktop and run as administrator but errors remains, what other options do I have?

    Hello, hanliefromzaf. 
    Thank you for visiting Apple Support Communities. 
    Here is an article that I would recommend going through when experiencing this issue. 
    iTunes for Windows: Unable to install or open
    http://support.apple.com/kb/ts5376
    Cheers,
    Jason H. 

  • How to test oracle is up and running in remote machine using shell script

    Hello,
    I need help to write an linux script.
    I have a java application server running on machine 192.168.5.20 and our oracle 10g standard 1.0.2 is running on machine 192.168.5.21.
    I have found script to start oracle when computer is turned on.
    But I cannot start my application server automatically since it depends on whether oracle is up and running or not on the remote machine.
    Therefore, in case of power failure or maintenance, our client has to call us to start application server.
    I would be grateful if someone can help me "How can I write script to check oracle is up and running in machine 192.168.5.21 from machine 192.168.5.20.
    For your information, I have no oracle installed in application server. So tnsping won't work.
    What I want is when power is back, application server script automatically and tesing for oracle server is up and running. If it is up, script will start application server.
    Thanking you.

    Hi,
    It's not failover or experimental. My application server uses JBOSS and JBOSS needs database name to start up. My enviroment is LAN. My database is in different machine as I mentioned before. So In case of power failure, I need to start my application server (JBoss) manually, because I need to confirm that oracle is already running before start app server.
    I want an automated script (when power is just on) to start my application server which will wait to check if the datbase server is up I will start application server.
    The scripts given above It works if appserver and db server in the same machine (my development machine).
    But when I test the script in my production applicaiton server, It shows sqlplus command not found (my app server does not have any oracle client installed).
    About hostname yes My applicaiton server hostname is hostapp1 and dabase server hostname is hostdat1.
    Do you think Is it possible to test the script without oracle client not installed. or It has to be done writing code like java program and test using jdbc connection.
    Best regards.

  • I'm trying to download sheet music and need to run libellous scorch add-on in 32 bit model. I have a mac running lion and the latest safari. I have downloaded FireFox 6 and run it in 32 bit but still I can't see the music score to print. Can anyone help?

    I'm trying to download sheet music and need to run sibelius scorch add-on in 32 bit model. I have a mac running lion and the latest safari. I have downloaded FireFox 6 and run it in 32 bit but still I can't see the music score to print. Can anyone help?

    Hello,
    There are no files like that in that folder (com.apple.safari).  They all have long numbers with .jpeg or .png at the end.  That's what I meant by I cannot find any files like those mentioned in all the helps I read today.  BTW-it's still crashing - no particular pattern to it at all.
    The only two things I have downloaded recently is a new version of Flash and a Mac-driven update to Office.
    Thank you very much for your attempt to help us.
    J.

  • How to access and run places maintenance add on?

    10/4/2014 Thank you Cor-el for your rapid response to my original question. I do believe I downloaded the Places Maintenance add on. But I have no idea as to how to access that add on and run it, if that's what I should do. I did try to restore a backed up HTML bookmark file. This seems to have changed the "wrong" URL that I get to a different wrong URL. Thanks.

    Hi Royma
    We prefer to keep the discussion in one thread, so I will lock this thread.
    Please continue here:
    *[[/questions/1023735]]

  • How to launch and run script against safari using selenium webdriver

    I am trying to launch and run my selenium webdriver script using safari but its launching safari but not running script. Its throwing belwo error message..
    org.openqa.selenium.remote.UnreachableBrowserException: Failed to connect to SafariDriver after 50052 ms
    Build info: version: '2.33.0', revision: '4e90c97', time: '2013-05-22 15:33:32'
    System info: os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.7.0_25'
    Driver info: driver.version: SafariDriver
        at org.openqa.selenium.safari.SafariDriverCommandExecutor.start(SafariDriverComman dExecutor.java:113)
        at org.openqa.selenium.safari.SafariDriver.startClient(SafariDriver.java:112)
        at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:110)
        at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:115)
        at org.openqa.selenium.safari.SafariDriver.<init>(SafariDriver.java:83)
        at org.openqa.selenium.safari.SafariDriver.<init>(SafariDriver.java:73)
        at LinkText.setUp(LinkText.java:38)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.jav a:47)
        at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java :12)
        at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java: 44)
        at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24)
        at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
        at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
        at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:7 0)
        at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:5 0)
        at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
        at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
        at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
        at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
        at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
        at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
        at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestRefere nce.java:50)
        at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunne r.java:467)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunne r.java:683)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.jav a:390)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.ja va:197)

    Hey Reese
    You bailed me out, dude! Apparently, my difficulties stemmed from me trying to directly edit /var/cron/tabs/root with pico. Never seemed to bother the other stuff, but it did this time. I am totally inept with vi, the default editor for crontab -e, which is why I had cheated before, and directly edited the /var/cron/tabs/root, el.al., so I had to find out how to
    export EDITOR='pico'
    in my .bashrc
    After having done that, no problem, except for a latent programming logic bug that has reared its ugly head (my script is doing some date manipulation with today's and yesterday's date, and my script crashed and burned on the month change and with stuff related to single-digit date sequence numbers <10).
    But, hey, I learned how to reset my default editor, so as to make life easier for me when it comes time to dorking with crontab files, and I learned that when the crontab file says "DO NOT EDIT THIS FILE - edit the master and reinstall," it means it!
    Thanx for the troubleshooting hint.

  • Unix Perl Script To verify a Up and Running Database on Different Server

    Unix Perl Script To verify a Up and Running Database on Different Server
    Hi
    can any one please tell me a solution to verify a Up and Running Database on Different Server other than the one where we run the unix perl script? The perl script should check if the database is running else it must exit.
    Thanks much
    Kiran

    The other best solution would be Enterprise Manager, load the EM on the other machine and install oracle intelligent agent on all the boxes where oracle is running and problem solved.
    FTP is only a File Transfer Protocol, you can upload/download the files but cant execute them.
    Apart from EM the best way is load oracle client and make connection to all the databases.
    AND There are some free oracle monitoring software available I dont know much about them but one is NAGIO (if I am not wrong), try that if you want.
    BTW whats the problem in monitoring the boxes from the same physical box, means just schedule a script using cron on the same physical box where oracle is to either make connection using SQLPLUS or check the processes using "ps" command and if there is anything wrong then send alert from that box only. In this way there is no need to maintain a central monitoring server.
    Daljit Singh

Maybe you are looking for

  • RE: Bookmarking; can you link to an external pdf file?

    Hi, I apologize in advance if this question is stupid; I am very new to using Adobe Acrobat 7 and have not had any training using it, much less creating documents, extracting, linking, etc. My employer creates PDF files of different documents, then w

  • Derivation of Profit centers

    Hi gurus, I am having a hard time trying to inherit the profit centers from the original documents for follow on documents such as Interest. Do you know if there is any event or standard configuration where I should indicate that the profit center sh

  • SAP HCM- Evaluation Path

    Hi, under the organisation management evaluation path, the system has specified the path as : O-S-P whereby its from organisational unit to position. In the entry profile for employee selection, the evaluation path the system uses was O-S-P, the prob

  • Syncing Photo albums with iPad

    I am trying to sync 3GB of photos with the 'Photoshop Album', and I also tried just syncing those specific folders too, and it says "The iPad cannot be synced. There is not enough memory." But there is 21GB of "free" space. I am confused. Any ideas?

  • UOM in Material Master

    Hi, Is it true that i cant change the UOM of material (base unit) even if there exist PO and PR for that material ( even though these are not open)? There are no scheduling aggrement too. The stock of material is 0 for this period as well as previous