Bug Report: fck_link.html missing from apex download distro

Hello folks,
I'm using the "Starndard HTML Editor" item in Apex 3.0
I'm trying to edit a link in the body of the item textarea. The pop-up does come up but I get the following error inside the window:
Not Found
The requested URL /i/fck/editor/dialog/fck_link.html was not found on this server.
I double checked original apex download (apex_3.0.zip) and this file seems to be missing from the source.
Can anyone please attach this file so users can download?
Thanks a lot.
-Alex

Hello folks,
I'm using the "Starndard HTML Editor" item in Apex 3.0
I'm trying to edit a link in the body of the item textarea. The pop-up does come up but I get the following error inside the window:
Not Found
The requested URL /i/fck/editor/dialog/fck_link.html was not found on this server.
I double checked original apex download (apex_3.0.zip) and this file seems to be missing from the source.
Can anyone please attach this file so users can download?
Thanks a lot.
-Alex

Similar Messages

  • Can I use Oracle Report Server to print from APEX? How?

    Hello, we have Oracle Application server, Oracle Report server and now we just installed APEX and doing a pilot project. Since we don't have BI Publisher, how can we use our Oracle Report server to print from apex report? Can it be done and if yes where can I get some detail info that I can share with our DBA?
    I have in past asked questions about the printing issues but I have been refered to http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html#01 section 5 which talks about another installation.
    Thanks so very much for any info.
    -iahmadi

    You can use FOP, but the formatting of the xsl (Xml Style Sheets) takes a little work. If you have the Oracle Reports server up and access to the development product, why not go that route?
    You want the filtering and sorting and searching, yes, but then you also want to print them out.. Then you would probably be best looking at replacing the Oracle Reports setup with BI Publisher. You can convert Most your reports over to bi publisher layouts easily.. (I have heard of some reports that do require recreating in Bi Publisher from Oracle Reports..)
    Then you can have your Apex Reports and call Bi Publisher from APEX and everyone wins..
    Is your Oracle Reports stuff used by non-APEX applications, that could be modified to use Bi Publisher?
    Thank you,
    Tony Miller
    Webster, TX

  • Bug report: tranlations not deleted from WWV_FLOW_DYNAMIC_TRANSLATIONS$

    Hello, apex team and Joel Kalman.
    Bug(?) report: Translations not deleted from WWV_FLOW_DYNAMIC_TRANSLATIONS$ on application replacement with importing from sqlplus using apex_application_install package.
    My environment:
    Oracle XE 11g Linux 64bit.
    Apex 4.1.1.
    Development app 110.
    Production app 111.
    How to reproduce:
    Simple way (not checked for 4.1.1):
    Export application 110 by using builder or APEXexport.
    Import application 110 ten times, then look into dynamic translation. Each translation repeats 10 times.
    Checked way to reproduce this bug in in 4.1.1:
    Repeat this 10 times to see how dynamic translations is multiplied in app 111.
    Export app 110 with bash command:
    $ java oracle.apex.APEXExprt -db xxx.private:1521:XE -user apex_040100 -password `cat secret.txt` -applicationid 110 -skipExportDate -expTranslations
    Import with this script (as apex_040100 user)
    declare
    l_workspace_id number;
    begin
    select workspace_id into l_workspace_id
    from apex_workspaces
    where workspace = 'PROD';
    apex_application_install.set_workspace_id( l_workspace_id );
    apex_application_install.set_application_id(111);
    apex_application_install.generate_offset;
    apex_application_install.set_schema( 'PROD' );
    apex_application_install.set_application_alias( 'FPROD_APP' );
    end;
    @../f110.sql
    Workaround:
    Run this script before each import:
    DELETE FROM apex_040100.WWV_FLOW_DYNAMIC_TRANSLATIONS$
    WHERE flow_ID = 111;
    If it is not a bug, please, explain me better way to workaround it for me.
    Vladimir

    Hi Vladimir,
    +>> Hello, apex team and Joel Kalman.+
    Actually, it's Kallman. But I'm not complaining...I get plenty of emails from within Oracle addressing me as "Joe".
    This is definitely a bug. It isn't disastrous, but it's slightly worse than you even presented. I found that if you manually delete an application from within the Application Builder, the dynamic translations remain as well. They could potentially be orphaned forever.
    Your workaround, while not recommended to directly manipulate the APEX schema, would clear up the excess data. Also, a way to reduce the effects of this problem is simply to set the offset to what was initially generated the first time you imported application 110 as 111.
    I didn't write this logic, but I'll fix it. There isn't a FK on this table and I believe there should be.
    Bug 13801751 is filed, to be fixed for APEX 4.2.
    Thanks for reporting this.
    Joel

  • How to send BI Publisher reports as email attachments from Apex

    Hi there,
    Before I start working on this new endeavor, I would like to check if it is even possible...
    Here we have Apex 4.0.2 and Oracle BI Publisher Enterprise 10.1.3. We use the Apex integration with BI Publisher to generate PDF reports.
    Now there is a requirement that those reports should be optionally sent by email as attachments (ideally from Apex itself or from a database procedure in the Apex application schema.)
    I am not sure how to do it, as such reports are generated by calls to URLs like this:
    http://server/apex/f?p=123:0:3370070991917144:PRINT_REPORT=reportname:NO::PARAM1:123 => opens a PDF in the browser window
    Is it possible to be done? If so, how?
    Thanks
    Luis

    hello,
    there is no native support for directly faxing a report. you could e.g. use a fax-software that has a printer-driver that supports this.
    regards,
    the oracle reports team

  • Attaching a BI Publisher report to an email from Apex

    Hello,
    My Apex application runs reports using a BI Publisher server- using a defined query and rtf template.
    The end user clicks on a button and a pdf report opens up- works perfect.
    Now, I need the click of the button to send an email having this report as an attachment.
    I am familiar with sending email from Apex + attachment.
    My problem is to create the report somewhere on the server without opening in a new browser window, then to attach the report that has just been create using BI Publisher to the email.
    Does anyone know how this can be accomplished?
    Thanks
    Rani

    Hi Tony,
    Just found out about a completely different solution:
    Thanks for your help.
    Rani
    Solution:
    declare
    datoteka blob;
    st_poste number;
    begin
    datoteka:=apex_util.get_print_document(
    p_application_id=>'183',
    p_report_query_name=>'REVIEW_COORD',
    p_report_layout_name=>'REVIEW_COORD',
    p_report_layout_type=>'rtf',
    p_document_format=>'pdf');
    st_poste:=apex_mail.send(
    p_to=>'[email protected]',
    p_from=>'[email protected]',
    p_body=>'Test',
    p_subj=>'Subject');
    apex_mail.add_attachment(
    p_mail_id=>st_poste,
    p_attachment=>datoteka,
    p_filename=>'REVIEW_COORD.pdf',
    p_mime_type=>'application/pdf');
    apex_mail.push_queue;
    end ;

  • Bug report: Strip HTML in reports

    Create a report region using the following SQL
    select * from apex_application_pages
    where application_id=:APP_IDThe default for Strip HTML is Yes in Report Attributes. Yet, if some rows contain CSS or Javascript snippets in the PAGE_HTML_HEADER column, they are NOT escaped i.e. the report column is empty and the code is dumped in on the page.
    Needless to say, this causes havoc with the presentation because the CSS is actually applied to the page.
    Thanks.

    Can you elaborate on that?The Strip HTML option (Yes/No for the whole report) allows html tags in column values to be removed (not escaped) when they are emitted when the column's HTML Expression attribute references the column in #COL# notation.
    And I agree, the Display As attribute of the Tabular Form Element section is a bit misleading as situated. Whereas most of the attributes in that section pertain to tabular form elements, the Display As LOV provides two additional variations on the Standard Report Column type: Display as Text (based on LOV, does not save state), and Display as Text (escape special characters, does not save state). Changing the selection among these three changes how non-updatable report columns are rendered, regardless of whether they are part of an updatable report.
    Scott

  • Bug Report: View APEX_APPLICATION_TEMP_REPORT missing Primary Key

    Hi,
    the dictionary view APEX_APPLICATION_TEMP_REPORT is missing the ID column of the underlaying table. Makes it quite hard to join from APEX_APPLICATION_PAGE_REGIONS without the ID. The template name is also no real workaround, because it's not unique if you have multiple themes in the application.
    Patrick
    My APEX Blog: http://www.inside-oracle-apex.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://apexplugin.sourceforge.net/ New!

    Noted, bug filed, thanks.
    Scott

  • Bug reported but no acknowledgement from Adobe

    Hi,
    I have identified a bug in DW but there is still no acknowledge by Adobe Engineering Team. So what was the point of reporting when there is no efforts on their part to acknowledge such reporting.

    The dicussion has thrown up a BUG but we were busy correcting it. It is the Insert>Data>Insert Record. POST is captilised. when it should only be lower case (I think you remember we had this conversion).
    It is in the panels as well. So if you hand coded it you wouldnt have put it in the form action as captialised POST but lowercase POST. The panel does that. Hence, if you automate and generate the code from the insert record in the server side behaviours panel you get this.
    I remember this conversation, and you are confused.  The insert record server behavior DOES NOT WRITE ANY HTML. It requires that you have a page that already has a form on it.  Try this -
    1.  Create a new PHP page.
    2.  Save it.
    3.  Try inserting an insert record server behavior on this new page.
    You are told that before using this behavior, you must first insert a form.  That means that *you* are the one responsible for putting an uppercase "POST" in the form's method attribute if that is what you are referring to.  If, however, you are talking about PHP's use of the auto-global $_POST, then that is supposed to be uppercase. Neither of those is a bug.

  • DOCTYPE missing from ApEx pages

    How do I add the DOCTYPE stanza to the ApEx pages?
    We have a requirement that ApEx pages need to pass the w3c validators. Since the first error is "missing DOCTYPE", the validator can't do much more.
    Where do I go on an ApEx page or application to include the DOCTYPE? I tried the page header and page html header, but that only buried the DOCTYPE way down the page.
    I'm not even sure which DOCTYPE I should be using? HTML or XHTML
    Oracle Support basically shrugged their shoulders at my question, so I'm hoping I'll find better answers here.
    Thx.

    Thanks for pointing me to the info in the doc. A quick look at the template shows how easy it will be to make changes.
    What kind of doctype does ApEx try to be? I've seen some posts suggest the doctype is xhtml. When using the validator, it seems that xhtml doctypes give a lot less error than the html doctype.
    Any guidance on selecting the appropriate DOCTYPE?
    Thx.

  • Auto run file for installati​on of HP Officejet 8500 Pro A909g Missing from driver download

    I have a HP Officejet 8500  Pro A909g. I downloaded the new Windows 8.1 64 bit driver as 8.1 would not allow the scanner to operate on the existing driver.  Printing was fine. When i went to install the wizard,  auto run file for the wizard is missing and so the installation can  not run and instal the new driver.

    Hello IanHP8500,
    Welcome to the HP Forums.
    I see that you're having an issue getting your Officejet 8500 scanning on Windows 8.1. I will do my best to help you with this issue.
    Did you upgrade to 8.1 from an older version of Windows?
    If so, with it not scanning correctly. You can try just removing the HP Solution Center from programs and features.
    Go to the bottom left corner of your screen right click on the Windows icon> go to Control Panel> Go to Programs> uninstall Solution Center if it's listed.
    Next, instead of using the printer install wizard. Download the software from this link: HP Officejet Pro Full Feature Software and Driver. Let it run through, it should prompt to " add more software". This should allow you to reinstall Solution Center.
    If you run into issues, there is something you may have to do. If you get a file missing error here, or the install hangs check your computer for the following.
    McAfee Live Safe - Disable the "Realtime Scanning".
    Check for and remove HPOINS*.dat or HPWINS*.dat. Here is a link to a post by JonW on how to do this: Re: installer setup hangs under Windows 8.1.
    Try all of this, and let me know how you make out. Thank you for posting on the HP Forums.
    I worked on behalf of HP.

  • Bug report about Erase Application from disk

    Hi,
    Steps to reproduce this problem :
    - only jdev11tp2 opened in Windows
    - create a new Application Workspace
    - from the 'Application Menu' icon, choose 'Erase Application from disk'
    ==> the Application directory is remove from IDE but not erased from disk.
    If you attempt to delete the workspace directory from windows, you get an error message (as if there are opened files) : "Cannot delete applicationXXX : access is denied. Make sure the disk is not full or write-protected and that the file is not currently in use"
    ==> You must leave Jdev for deleting the workspace directory thanks to windows.
    Other problem :
    if the workspace is created via a checkout (for a given revision) from a subversion's repository, if you try to erase this workspace with 'Erase Application from disk', you can't (like above) but moreover even if you leave Jdev !
    ==> you must close the windows session
    Regards,
    Christophe,

    Hi,
    don't know for the second issue, but the first is well known and a bug is filed already. I would assume that the outcome of this bug resolution also resolves your second issue
    thanks for reporting
    Frank

  • Bug Report: APEX_APPLICATION_SUPP_OBJ_CHCK is missing primary key column

    Hi,
    the APEX dictionary view APEX_APPLICATION_SUPP_OBJ_CHCK is missing the primary key column INSTALL_ID.
    Actually it's in the view but commented out.
    Regards
    Patrick
    My APEX Blog: http://www.inside-oracle-apex.com
    The APEX Builder Plugin: http://builderplugin.oracleapex.info/
    The ApexLib Framework: http://apexlib.sourceforge.net/

    Hi Patrick,
    >> Just my (highly) trained eyes
    I knew I don’t have a chance :)
    >> Actually it's the APEX Essentials/APEX Advisor tool which is failing because I can't uniquely identify a record in the dictionary view.
    To find that out in the same day the patch is released is a bummer, but I hope you’ll find a way to work around it. Unfortunately, I can’t really help you there.
    Thanks,
    Arie.

  • .rmt file missing from firmware download

    The readme file included with the firmware download zip file states to look for a .rmt file. There are only .txt files and a .bin file in the zip file. Are the instruction wrong/obsolete or should there be a .rmt file in the .zip file or is the .bin file the real firmware update file?

    actually, only the .bin is what you need... even if you have the .zip file, you will need to unzip it and get the .bin (binary file) you will need for firmware upgrade... the text file only gives you information...
    "a helping hand in a community makes the world a universe"

  • Received word report but photos missing from my PC to my Mac ?

    Installed Office 365 on my work Imac so I could format word docs from my PC. Word doc is file but photos not coming through ? I have Icloud & iphoto on my Mac ?

    Here is the info from Thunderbird's web site:
    Your mail files are inside your profile (see the Profile Folder), in the Mail and (if you use IMAP) ImapMail folders. Each mail folder (Inbox, Sent, etc.) is stored as two files — one with no extension (e.g. INBOX), which is the mail file itself (in "mbox" format), and one with an .msf extension (e.g. INBOX.msf), which is the index (Mail Summary File) to the mail file. Tell the other program to import mail from the file with no extension.
    Just copy your mbox files you want to transfer to a CD/flash drive or whatever device you want to use, and then import them into Mail. You should be set.

  • Bug report: "convert to pdf" from explorer on set of .psd files prints documents on physical printer

    I've recorded a tiny screen video to show this bug:
    Please note,that printer window error 6000 is as expected (since I don't actually need to print this stuff).

    I have a little speculation about this. Maybe...
    I speculate that Acrobat will offer "convert to Adobe PDF" for any file where it finds a "print" verb available in the Windows shell. Acrobat assumes it can to a ShellExecute printto Adobe PDF. (It works for files you can drag to a specific nondefault printer in the printers control panel).
    So, Acrobat doesn't understand PSD files and Photoshop doesn't know anything about Acrobat (though it can of course save as PDF, no connection to this). But because Photoshop offers a service to Windows, and Acrobat tries to use that service unsuccessfully, we end up with this mess.
    So, Acrobat may offer conversion for whole classes of file which are quite surprising; and it won't always work (generally for a whole class of file).
    End of speculation.

Maybe you are looking for

  • Error when run Application with jdbc  Help me please

    this my code: public void resultado() { String ClassName = "oracle.jdbc.driver.OracleDriver"; String url = "jdbc:oracle:thin:@educacion04:1521:ora92"; Connection con; Statement stmt; try { Class.forName(ClassName); } catch(java.lang.ClassNotFoundExce

  • Mac Mini 10.6.8 slow startup

    I have a mac mini with 2 gb ram running 10.6.8. Hard drive is 500gb with over half of that unused. Initial boot time first thing in the morning is slightly over a minute. It also starts programs pretty slow after that for about 30 minutes. Then it se

  • Do I need to update Bootcamp 3.3 after upgrading from Snow Leopard to Mountain Lion?

    Do I need to update Bootcamp 3.3 after upgrading directly from Snow Leopard to Mountain Lion? If so, what is the recommended version for my machine? Other pros and cons we should consider? Not sure what is considered best practice. We have a mid-2011

  • MS Word, Appleworks - Cyrilic fonts in fonts list

    I have been using Font Book to minimize the length of the fonts list in word processors. It has been effective but the font pulldown menus still include a choice of CY and CE appended to essential fonts (Courier CE,CY for instance). If selected they

  • Putting I-Photo slideshows on I-DVD

    Not sure which version of I-DVD I'm using (I have an I-Mac G5) but I'd like to know how to put a slideshow from my I-Photo collection into the drop box onto the I-DVD "templates" that Apple supply. I seem to be able to manageit with individual photos