Form portlets give preference path errors

Hi there,
I've created a number of application components that work well
in isolation. However, when I place them as portlets on a page I
often get the following (or similar) error messages when I flick
between the tabs that contain the portlets.
Error: An unexpected error occurred: ORA-01403: no data found
ORA-01403: no data found (WWV-16016)
An unexpected error occurred: ORA-01403: no data found (WWV-
16016)
The preference path does not exist:
ORACLE.WEBVIEW.PARAMETERS.753_RP_MAINT_ROV_COMPONENT_2498561
(WWC-51000)
My components all share a small number of tables and I find the
problems usually occur when I delete a record from one form
portlet and then click on a tab to display a different form
portlet. My forms all contain combobox LOVs based on a query.
What is causing such annoying problems? I need to fix it ASAP!

repost...

Similar Messages

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • Error: The preference path does not exist

    Subject:
    Error: The preference path does not exist:
    Oracle.Portal.Page(WWC-51000)]
    I can not resolve this error.
    Have you already experienced this error?
    I'm sending more information below.
    Regards, Dime
    DETAILS:
    ========
    ORACLE Product: iAS 9i EE, v1.0.2
    Platform: RedHat Linox 6.2, kernel 2.2.18
    HW Platform:
    IBM Intellistation 6889, Intel P2 350MHz, 384MB
    Problem:
    After successful installation of the Application Server and data base creation, the installation of ORACLE Portal 3.0.6 is successful too, but the following message
    appears when we try to access the URL http://servername:port/pls/portal30:
    Error: The preference path does not exist:
    Oracle.Portal.Page (WWC-51000)
    About the Attachments:
    - init.ora.original (the original init.ora file)
    - init.ora.try1 (the file modified as described in the configuration guide)
    - init.ora.try2 (according suggestions in the discussion group on
    the ORACLE Metal Partners Site)
    - install.log (install.log generated with init.ora.try2)
    Regards,
    Dimitar Indovski,
    GORD Systems
    ATTACHMENT-1 (init.ora.original)
    db_name=DEFAULT
    db_files= 80 # SMALL
    db_file_multiblock_read_count = 8 # SMALL
    db_block_buffers = 100 # SMALL
    shared_pool_size = 3500000 # SMALL
    log_checkpoint_interval = 10000
    processes = 50 # SMALL
    parallel_max_servers = 5 # SMALL
    log_buffer = 32768 # SMALL
    max_dump_file_size = 10240 # limit trace file size to 5 Meg each
    global_names = TRUE
    control_files = (ora_control1, ora_control2)
    ATTACHMENT-2 (init.ora.try1)
    db_name=DEFAULT
    db_files = 80 # SMALL
    db_file_multiblock_read_count = 8 # SMALL
    db_block_buffers = 100 # SMALL
    shared_pool_size = 3500000 # SMALL
    log_checkpoint_interval = 10000
    processes = 50 # SMALL
    parallel_max_servers = 5 # SMALL
    log_buffer = 32768 # SMALL
    max_dump_file_size = 10240 # limit trace file size to 5 Meg each
    global_names = TRUE
    control_files = (ora_control1, ora_control2)
    max_enabled_roles = 25
    open_cursors = 50
    compatible = 8.1.0
    java_pool_size = 20
    ATTACHMENT-3 (init.ora.try2)
    db_name=DEFAULT
    db_file_multiblock_read_count = 16
    db_block_buffers = 550
    shared_pool_size = 31457280
    log_checkpoint_interval = 10000
    processes = 100
    parallel_max_servers = 5
    log_buffer = 32768
    max_dump_file_size = 10240
    global_names = TRUE
    control_files = (ora_control1, ora_control2)
    open_cursors = 300
    large_pool_size = 45000000
    java_pool_size = 32768000
    db_block_size = 8192
    ATTACHMENT-4 (install.log.gz)
    -----------------------------

    Dennis
    A general shared_pool_size Q&A is part of the Troubleshooting Guide on OTN: http://technet.oracle.com/products/iportal/htdocs/portal_troubleshooting.htm
    The Configuration Assistant determines the shared pool size from the view v$parameter,
    which lists information about the initialization parameters (populated from init.ora file). If the shared_pool_size value is more than 15728640 (for a default installation), you pass the minimal requirements set by the Portal Installer. Make sure you actually write out all the digits (i.e. 1000000000) and don't use abbreviations (1000M). Currently, the Configuration Assistant does a numeric check against the values that are set and cannot resolve the abbreviate syntax.
    Also try running the sql [select value from v$parameter where name like 'shared_pool_size';] to check if the changes you are making in the init.ora is really getting populated in the v$parameter view. As long as you restart the database once you make the change in init.ora, it should take effect.
    null

  • Web-Disk on OSX 10.9 Give me this error: "Finder got an error: Network file permission error."

    Previously I was using OSX 10.8 and Web Disk was working great.
    Since I upgraded to OSX 10.9 Web Disk Dont Attach to my compputer and give me this ERROR:
    FInder got an error: Network file permission error.
    When I got this ERROR first time I searched GOOGLE and found this link: http://cammodude.blogspot.no/
    And I did:
    To force all connections to be SMB1:
    Open A terminal window
    paste in the following line followed by the return key(should be all on one line): 
    echo "[default]" >> ~/Library/Preferences/nsmb.conf; echo "smb_neg=smb1_only" >> ~/Library/Preferences/nsmb.conf
    What the command does:
    Creates a file called nsmb.conf  in your  home directory at the path ~/Library/Preferences/nsmb.conf.
    Adds directives to force SMB connections to use the SMB1 protocol.  This is slower but stable.
    Then I could use Web Disk on OSX 10.9 after executing this command in Terminal.
    But now I restarted my Macbook and now Im NOT able to connect to Web Disk and get the same ERROR.
    FInder got an error: Network file permission error
    After trying 100 times it attaches 1 time but then show this ERROR:
    Can't get <<class cdis>> "my.server.com/2078" of application "Finder".
    If this happen then I can see the files in Finder and see the Contents and Size of files but if I open a PHP file in BBEdit then it shows BLANK.. But actually it is NOT blank.
    Now Im stuck How can I solve this? All help is highly appericated..
    Thank you so much...

    Hi,
    Make sure to chmod the app, something like this :
    chmod -Rf 777  secure_site_WebDisk.app
    (in my case the CPanel provided the app for my OSx version.)

  • Accessing the preference path in a dynamic page

    All,
    I would like to access the preference path
    so that I can use the get_names and get_value functions, in a dynamic page. When we create the dynamic page, we don't know what the preference path is. so, how do I get the preference path? e.g Add the dynamic page as a portlet into a content area page.
    Thanks
    Sanjay

    Currently the validation of the PL/SQL block of a dynamic page is not in the
    context of procedure show. So you can not directly refer to the parameters such as p_reference_path.
    There is a way to do it:
    1. use bind variable as the reference path
    <ORACLE>
    declare
    parm1 varchar2(30) :=
    portal30.wwpro_api_parameters.get_value('parm1', :path);
    begin
    htp.p('The value of Parameter 1 is ' &#0124; &#0124; parm1);
    end;
    </ORACLE>
    2. In the Parameter Form Setting, set the default value for the bind variable to #p_reference_path
    Before the PL/SQL block is executed, bind variable path will be bind with the value of procedure show's
    parameter p_reference_path.
    Hope this works.

  • Preference path missing

    Hi Friends,
    Although I could successfully install Oracle Portal 3.0 on Oracle9iAS (ver. 9.0.1) with repository in Oracle8i (ver. 8.1.7), I am unable to access the Oracle Portal Home Page fully using the URL : http://<machine_name>:port/pls/portal30. The page displays the following error when opened.
    Error : The preference path does not exist
    Oracle.Portal.Page (WWC-51000)
    I had chosen Enterprise Edition option while installing Ora9iAS for I wanted Forms and Report Server to be installed.
    What & where settings shall I need to make?
    Which table of the schema- Portal30 should store this preference path?
    Which configuration file should have this information? ( I did not find any lead in the file containing DAD info)
    Have I gone wrong in installation?
    Which type of Oracle9iAS installation should I have followed ?
    Or
    For that matter, anything need to be done as the Portal Administrator for access?
    If so, How?
    Any help to resolve this problem will be long remembered.
    Thanks in advance
    Samir

    Hi,
    The preference path is part of the seed data. It is likely that you have install errors. Check the log at IAS_HOME/assistants/opca/install.log.
    WWC-51000 occurs when your installation is not complete.
    The solution is to change the large_pool size from 600k to the value of 35000000. (in the init.ora file) Make sure that your table-spaces are large enough.
    Then you have to delete all portal30x - user (for a clean db) and restart the db and the installation-script for portal30.
    Also check the following URL for more details:http://technet.oracle.com/products/iportal/htdocs/portal_troubleshooting.htm
    Thanks,
    Anu

  • Application Forms Could't Open with error FRM-40010  in 11i Environment

    Hi Gurus,
    I need some help on the Forms issue, users unable to open the Forms it gives following error.
    FRM-40010: Cannot read form /ul01/app/applmgr/lasrx/gl/11.5.0/forms/US/GLXIQACC.fmx.
    In fact those fmx are not in the above path, its in different mount point /ul03/app/applmgr/lasrx/gl/11.5.0/forms/US/GLXIQACC.fmx.
    I am not sure from where it's reading the .fmx
    Could anybody tell where to check , might be some environmental files.
    NOTE: This instance is cloned newly and these forms testing first time.
    Thanks.

    I need some help on the Forms issue, users unable to open the Forms it gives following error.
    FRM-40010: Cannot read form /ul01/app/applmgr/lasrx/gl/11.5.0/forms/US/GLXIQACC.fmx.
    In fact those fmx are not in the above path, its in different mount point /ul03/app/applmgr/lasrx/gl/11.5.0/forms/US/GLXIQACC.fmx.Please post the output of the following commands:
    $ echo $APPL_TOP
    $ echo $GL_TOP
    Was APPL_TOP set properly when you cloned the instance?
    I am not sure from where it's reading the .fmxIt reads from the value of $GL_TOP
    Could anybody tell where to check , might be some environmental files.Check the application context file as well as the application env file (search for u101 and replace it with u103). If you change the context file, run AutoConfig and bounce all the services.
    Thanks,
    Hussein

  • How do I remove header from FORM portlet?

    I am using a daymanic page to open several portlets. I got everything working except for...
    I am opening a form as a portlet and cannot get rid of the srupid header with the Oracle logo.
    ROTARY.wwv_component_control.run_as_portlet(p_module_id =>
    1861048119); works great but shows the header
    ROTARY.wwv_component_control.run_as_portlet(p_module_id =>
    1861048119,p_show_header =>'No');
    gives me the error:
    ORA-06550: line 1, column 13704:
    PLS-00306: wrong number or types of arguments in call to 'RUN_AS_PORTLET'
    what is the correct syntax!
    sand where would I find it anyway!

    Hi,
    This is a bug and has been fixed. It will be available with 30984.
    Thanks,
    Sharmila

  • Unable To Open Saved WI Reports in IE 9-Receive Invalid Path Error

    I am unable to open any saved web intelligence report documents in Internet Explorer 9.  When I select view or modify, the java report panel does not initiate but instead gives me an error stating "Invalid path /AnalyticalReporting/WebiView was requested".  Everything works fine if I use Firefox 9.   Is it a setting I need to change in internet explorer somewhere or is it a compaitibility issue?
    I can create new web intelligence queries and reports in IE 9, but if I try to open a report that I saved, I get an error.

    Hello,
    If you are using the older version of BOXI in that case IE 9 is not supported. Please check your Boxi version which supports IE 9 or not.
    Thanks,
    Rcse2006

  • My quicklook is broken and gives me an error!

    Hi there!
    So over the past few days the quickload feature in finder has stopped working for me. When ever I highlight a file and hit the spacebar quicklook loads but not as usual. In the case of trying to load an MP3, no music plays and only a small image of it appears. The same goes for all images and every other type of viewable application. Check out the example of it below to see. It also gives me the error: "An error occured with the preview of this document."
    Before I posted this I tried to resolve it with good old google, I found numerous articles telling me to delete the quickload preference files in the preferences folder of User/System/Library/Preferences. I have deleted those, but still nothing has worked. I have also repaired my disk permissions several times, the only thing is I have replaced my CD drive with an SSD and everything is running out that drive, I just keep regular files on the HD. So PLEASE, I would really like some help because I deal with quicklook tons and can't go on without it. Thank you guys!

    Sorry to bump but I would really love some help! I've exhausted all resources that I can find!

  • Facetime for Mac gives me an error that says "quit unexpectedly".

    Why does it do this?  I try to make a call from my Ipad2 to my Mac Min using Facetime, and the app on my Mini shuts down and gives me an error message every time.  It seems like Facetime is running fine on my Ipad2, but it's the desktop version that is faulty.  I've reloaded the app 3 times and they obviously haven't found the bug.  Apple support is anything but...anyone know how to fix?  The rest of the error message reads like this:
    Process:         FaceTime [54134]
    Path:            /Applications/FaceTime.app/Contents/MacOS/FaceTime
    Identifier:      com.apple.FaceTime
    Version:         1.0.2 (166)
    Build Info:      FT_Monaco-1660000~1
    App Item ID:     414307850
    App External ID: 3531181
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [85]
    I bought the Ipad2 so I could facetime with my family while on the road, and ironically it's the desktop version that is failing me.  Thanks in advance to anyone who can help me!

    Never mind.  Figured it out.  My webcam wasn't fully functional.  I had it attached to a peripheral USB hub and it wasn't drawing enough power to work correctly.  Therefore, Factime freaked out and quit on me.  Just make sure you have your webcam attached directly to USB port on your computer. 

  • 3-1674105521 Multiple Paths error while using Bridge Table

    https://support.us.oracle.com/oip/faces/secure/srm/srview/SRViewStandalone.jspx?sr=3-1674105521
    Customer Smiths Medical International Limited
    Description: Multiple Paths error while using Bridge Table
    1. I have a urgent customer encounterd a design issue and customer was trying to add 3 logical joins between SDI_GPOUP_MEMBERSHIP and these 3 tables (FACT_HOSPITAL_FINANCE_DTLS, FACT_HOSPITAL_BEDS_UTILZN and FACT_HOSPITAL_ATRIBUTES)
    2. They found found out by adding these 3 joins, they ended with circular error.
    [nQSError: 15001] Could not load navigation space for subject area GXODS.
    [nQSError: 15009] Multiple paths exist to table DIM_SDI_CUSTOMER_DEMOGRAPHICS. Circular logical schemas are not supported.
    In response to this circular error, the developer was able to bypass the error using aliases, but this is not desired by client.
    3. They want to know how to avoid this error totally without using alias table and suggest a way to resolve the circular join(Multiple Path) error.
    Appreciated if someone can give some pointer or suggestion as the customer is in stiff deadline.
    Thanks
    Teik

    The strange thing compared to your output is that I get an error when I have table prefix in the query block:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01":  system/******** DUMPFILE=TMP1.dmp LOGFILE=imp.log PARALLEL=8 QUERY=SYSADM.TMP1:"WHERE TMP1.A = 2" REMAP_TABLE=SYSADM.TMP1:TMP3 CONTENT=DATA_ONLY
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    ORA-31693: Table data object "SYSADM"."TMP3" failed to load/unload and is being skipped due to error:
    ORA-38500: Unsupported operation: Oracle XML DB not present
    Job "SYSTEM"."SYS_IMPORT_FULL_01" completed with 1 error(s) at Fri Dec 13 10:39:11 2013 elapsed 0 00:00:03
    And if I remove it, it works:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01":  system/******** DUMPFILE=TMP1.dmp LOGFILE=imp.log PARALLEL=8 QUERY=SYSADM.TMP1:"WHERE A = 2" REMAP_TABLE=SYSADM.TMP1:TMP3 CONTENT=DATA_ONLY
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "SYSADM"."TMP3"                             5.406 KB       1 out of 2 rows
    Job "SYSTEM"."SYS_IMPORT_FULL_01" successfully completed at Fri Dec 13 10:36:50 2013 elapsed 0 00:00:01
    Nicolas.
    PS: as you can see, I'm on 11.2.0.4, I do not have 11.2.0.1 that you seem to use.

  • Why do Chatropolis entry pages give "403 Forbidden" error on all browsers?

    I've been running Mac OS 10.4.11 successfully since it's release, and I normally have the following browsers installed & working: Safari 3.1.1 (my default/first choice), Safari 2.0.4, Firefox 2.0.0.14, and the PC version of Internet Explorer (6.0.2) which I can run in Windows 2000 under Virtual PC 7.0.2 emulation.
    Suddenly, 2 days ago, for no reason at all, the ability of my Mac to access any of the chatroom entry pages on the chatropolis.com website stopped working. (Please be warned - BEFORE you visit chatropolis.com - that it primarily hosts ADULT chatrooms!). This is after many years of problem-free access to these pages, using my current Mac, and previous Macs.
    I can still access the home page, the user list pages, etc., but trying to access the room entry pages for any chatroom at all gives a simple black page with white text, which reads:
    403 Forbidden
    You are not authorized to access this resource.
    The entry pages all take the form http://csX.chatropolis.com/enter/roomname
    where "X" is the server number that the particular room is hosted on (normally "7" or "10") and "roomname" is the name of the chatroom that I'm trying to enter. For example, the URL of the room entry page for the room "Current Events" is http://cs10.chatropolis.com/enter/currentevents
    I can access any page on the Chatropolis site that DOESN'T start http://csX.chatropolis.com/enter/....... but none of the pages that DO start this way!
    This occurs whichever browser I use, and even occurs using the PC version of Internet Explorer 6.0.2 running under Virtual PC emulation!
    I've tried all of the following to solve the problem, but nothing works:
    I've tried deleting both Safari 3.1.1 & Safari 2.0.4, and then reinstalling Safari 3.1.1.
    I've purged all the caches, cookies, browsing histories, etc. of all my browsers, both within the browsers themselves, and by using Intego Washing Machine 1.1 (which comes free with Intego NetBarrier 5). I do this purging regularly anyway.
    I've restarted the Mac several times.
    Using Disk Utility, I've repaired permissions on the boot HD several times. I've verified the boot HD, and no problems were found.
    I've rebooted the Mac from my Alsoft DiskWarrior 4.0 CD and successfully run "Repair Disk Permissions" and "Check All Files & Folders" on all my hard drives, including the boot disk, and I've successfully rebuilt & replaced the directories on all the drives.
    I've successfully accessed the pages in question using a friends Mac, who lives very nearby, and uses the same product (2 MB cable broadband internet connection) from the same ISP as me.
    I've searched for all files on my Mac that have a modification date of 2 days ago, and deleted any that are in any way relevant to web browsers.
    I've emailed the owner of Chatropolis (Michael Ludwick) and asked for his help. He thought that maybe I'd installed some software prior to the problem arising, but this isn't the case. He also dismissed my theory that my ISP might be blocking access for some reason. On the day I first emailed him (Sunday), he told me that there had been over 700,000 successful logins, and that I was the only person to contact technical support that day saying that I couldn't gain access. He tells me that "The error page actually resides on your machine so the src isn't important" even though the colour scheme of the error page matches every other error page on Chatropolis!
    I now suspect that the problem lies in the part of the Mac OS which is activated when certain types of pages on the internet are accessed, whichever browser makes the call - some deep part of the OS that is normally invisible to the user, and has to function normally for certain types of internet access to take place.
    All non-entry pages on Chatropolis work perfectly, as do all other websites, as does sending & receiving email.
    Everything is bang up-to-date with Software Update. Nothing was installed or removed prior to the problem occurring.
    If anyone has any suggestions, I'd be very grateful. I'm no UNIX geek, but I've been using the Mac OS since the System 6 days, and I know my way around it pretty well. I'd rather venture into the dark abyss that is Terminal and perform some sort of command line fix than have to reinstall the entire OS!
    I've read many times over the years that Mac OS X performs housekeeping/janatorial tasks "overnight" from time to time, but I never leave my Mac on overnight. It's shutdown & restarted at least once a day. Is there perhaps one of these "housekeeping" tasks that has never been performed, and that should be, that might solve the problem? If so, how do I force these tasks to be performed immediately, to see if that helps?
    Many thanks in advance for any constructive input!

    Diamond Dave wrote:
    Reinstalling Safari 3.1.1 appears to have recreated a fresh copy of the WebKit.framework folder and all it's contents, in the correct place. Needless to say, as ever, this hasn't solved the problem...
    Hmm. Wish I'd seen your posts earlier, I could have saved you some trouble. It's nothing on your machine. It's a problem at Chatropolis. I am able access a page on one of the two machines, the one at cs10.chatropolis.com. But the one at cs7.chatropolis.com, while the server is there, and can be pinged, sends back a "404 - not found" response.
    No matter what the owner says, these errors are server errors on his end, and have nothing to do with any settings on your computer. He's simply mistaken when he says they are coming off your computer. It's possible that he's confused by how Internet Explorer on Windows can be set up so that it will give you an error page that looks a lot like the same error page you'll get from a Windows IIS server. Or he simply doesn't know the technical details.
    But it doesn't look like he's running a Windows IIS server, either. According to the headers on his servers, they're running something called "IFCS", which a little digging shows to be something owned by his company.
    charlie

  • How to use alerts in Form Portlet

    Hi I m new to portal..
    Plz suggest me how to use alerts in Form Portlet...
    If possible give me some sample code...

    I think I already answered this question in the main Portal forum.
    Mick.

  • I've got a mid 2009 MacBook Pro.  Today, I updated to Yosemite 10.10.1.  I also updated Safari to 8.0.2.  Now, anytime I open Safari, it immediately quits and give me an error page that says, Safari unexpectedly quit and suggest that I can click on a

    I’ve got a mid 2009 MacBook Pro.  Today, I updated to Yosemite 10.10.1.  I also updated Safari to 8.0.2.  Now, anytime I open Safari, it immediately quits and give me an error page that says, Safari unexpectedly quit and suggest that I can click on a Reopen button and restart it, but it just does it again.
    I read some of the questions and responses here and went to ~/Library/Safari and threw out the webpages.db file and emptied the trash and rebooted.
      No luck; same problem.
    BTW: Mail works
      Any ideas how to get around this?

    There is no need to download anything to solve this problem.
    You may have installed the "Genieo" or "InstallMac" ad-injection malware. Follow the instructions on this Apple Support page to remove it.
    Back up all data before making any changes.
    Besides the files listed in the linked support article, you may also need to remove this file in the same way:
    ~/Library/LaunchAgents/com.genieo.completer.ltvbit.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those you find, remove them as well.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, then you may have one of the other kinds of adware covered by the support article. Follow the rest of the instructions in the article.
    Make sure you don't repeat the mistake that led you to install the malware. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates
    if it's not already checked.

Maybe you are looking for

  • Use of NACE after creating print program n smart form

    Wat's d purpose of NACE?I hav created my own print program n smart form according to my own requirement.If NACE is necessary 4 my smart from.How can i use NACE i mean navigation steps. Please help me out.Its urgent. Thanks & Regards, Santhosh.

  • Cell Sensitive -- How to do this

    Dear All, we are in BI 7.0. Layout 1: Planner plans data for an year  Jan2008-Dec2008 = 12000 USD. Layout 2: This gets dirtibuted to 12 months equally. Jan=1000,Feb=1000,..... Dec=1000. If the the planner manually changes some values in some months i

  • I have Acrobat 7.0 Professional loaded on Windows 7; No Printer & error msgs

    I have Adobe Acrobate 7.0 Professional, loaded onto a new Dell Inspiron N5010 clone where I have Windows 7. I installed the Acrobat successfully, but the virtual printer does not show up as an available printer in my Devices & Printers.  Also when I

  • I spray cleaned my macbook air wig

    i spray cleaned by macbook air with a hoyshold cleanjng liquid, and looks like i damaged the display. i have a broad vertical band of lines running through the middle of the screen also, the machine connects to the net, but safari does not log on to

  • Best practice - creating functions in data model vs. rtf template

    Just a general question. Is there a best practice of creating functions in the data model vs. creating the functions in the data template? For example, is it more efficient to sum two fields in my SQL query or to create a function in the template tha