Access existing web pages from '08?

Here's the deal - I have had web pages set up with iWeb '06 w/Tiger, no problem. I installed (on a separate disk) Leopard, and iLife 08. So, if I boot from my Tiger disk, all is well, I can edit my web pages using iWeb '06.
When I boot to my Leopard drive, and use iWeb '08, it just comes up to the default 'choose your layout' - it knows nothing about my existing .Mac web pages.
How do I open my existing web pages from a different drive / partition using iWeb '08, that was created from iWeb '06 on a different boot drive?
Many free beers await the first person to help me out on this. Thanks,
John F

Hi John,
Have a look at the following page
http://transfer.iwebfaq.org
The only thing that changes for you is that you're transferring it from one drive to the other instead of from one computer to another.
Please make a backup of the file before getting your site into iWeb '08 (and after if it was successful). Be sure to update the iWeb application before opening your website with it (get it to version 2.0.2)
And note that once you updated the site to iWeb 2.0 it can't be edited in iWeb '06 anymore.
I don't drink beer sorry...
Regards,
Cédric
"I don't receive any form of compensation, financial or otherwise, from my recommendation or link"

Similar Messages

  • Can't access my web page from Verizon's ISP

    My GoDaddy web page at: http://www.dolittleproject.com can no longer be accessed via Verizon 3G wireless broadband. It has worked in the past, but is now dead.
    I contacted GoDaddy. They suggested I try using a remote open proxy. That worked: I could see my web page. (I used http://anonymouse.org/cgi-bin/anon-www.cgi/http://www.dolittleproject.com ) I also tried using Google's DNS servers, instead of Verizon's. That doesn't work. it seems that Verizon is somehow blocking or otherwise interfering with access to my site, which -- by the way -- contains no salacious or otherwise offensive material.
    Any ideas would be appreciated.

    Were you ever able to find a solution to this?  I am experiencing the exact same problem with our website - www.bravegirlsclub.com - verizon wireless broadband (3G) users are not able to access our site at all.  They get a 504 error/server timeout.
    I pulled up your site with my 3G connection so I was wondering if you found a solution... although I talked to Verizon's advanced tech support twice and once they were able to replicate my problem and once they weren't, so I don't know if it is across the board for all Verizon wireless broadband users or just clusters/random individuals.  I may just be one of the lucky ones that can pull your site up with a Verizon 3G connection...
    I was also able to access our site via a remote open proxy.  (I tried http://anonymouse.org/cgi-bin/anon-www.cgi/http://bravegirlsclub.com/ and https://www.megaproxy.com/go/_mp_framed?www.bravegirlsclub.com).  Our site is not hosted with GoDaddy if that makes a difference... I have tried just about everything I can think of to no avail. 

  • When I try to access a web page or link from a web page I receive an error message like "Server not found" or "Unable to connect." After repeated "try again" attempts the page will load, but when I click on a button or link, the same thing repeats. Why?

    When I try to access any web page or any link from a web page, I receive an error message such as "Server not found" or "Unable to connect." After repeated "try again" attempts that the page will load, but as soon as I click on a button or link, the same thing repeats. Any suggestions?

    When I try to access any web page or any link from a web page, I receive an error message such as "Server not found" or "Unable to connect." After repeated "try again" attempts that the page will load, but as soon as I click on a button or link, the same thing repeats. Any suggestions?

  • Access a web service from pl/sql

    I am trying to access a web service from pl/sql. I have downloaded the code from
    http://www.oracle.com/technology/tech/webservices/htdocs/samples/dbwebservice/DBWebServices_PLSQL.html
    But when I try to execute the sql, I am getting the following error:
    SQL> @local.sql
    Package created.
    Package body created.
    No errors.
    BEGIN dbms_output.put_line(time_service.get_local_time('94065')); END;
    ERROR at line 1:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1022
    ORA-12545: Connect failed because target host or object does not exist
    ORA-06512: at "WEB.DEMO_SOAP", line 71
    ORA-06512: at "WEB.TIME_SERVICE", line 15
    ORA-06512: at line 1
    It is failing at:
    resp := demo_soap.invoke(req,
    'http://www.ripedev.com/webservices/LocalTime.asmx',
    'http://ripedev.com/xsd/ZipCodeResults.xsd/LocalTimeByZipCode');
    But in the examples that I got from downloading source code, site used was:
    'http://www.alethea.net/webservices/LocalTime.asmx',
    'http://www.alethea.net/webservices/LocalTimeByZipCode');
    This site was not accessible. So I changed to the working site as follows, but still I
    am getting the above error.
    But I can access this site, if I type in the above address in the address bar of IE.
    Can any body help?
    I have oracle9i client installed on my machine and able to connect to server thru toad and sql plus.
    or IF any body refers me to a good website for the topic of "using webservies from pl/sql" that would be great too!

    Here is the complete code:
    time_service:
    CREATE OR REPLACE PACKAGE time_service AS
    FUNCTION get_local_time(zipcode IN VARCHAR2) RETURN VARCHAR2;
    END;
    CREATE OR REPLACE PACKAGE BODY time_service AS
    -- Location of Web service definition
    -- http://www.alethea.net/webservices/LocalTime.asmx?WSDL
    -- http://www.ripedev.com/webservices/LocalTime.asmx?WSDL
    -- http://www.xmethods.com/sd/2001/CurrencyExchangeService.wsdl
    --'http://ripedev.com/xsd/ZipCodeResults.xsd/LocalTimeByZipCode style=document');
    FUNCTION get_local_time(zipcode IN VARCHAR2) RETURN VARCHAR2 IS
    req demo_soap.request;
    resp demo_soap.response;
    BEGIN
    dbms_output.put_line('before new request..');
    req := demo_soap.new_request('LocalTimeByZipCode',
    'xmlns="http://ripedev.com/xsd/ZipCodeResults.xsd"');
    dbms_output.put_line('before add param..');
    demo_soap.add_parameter(req, 'ZipCode', 'xsd:string', zipcode);
    dbms_output.put_line('before invoke..');
    resp := demo_soap.invoke(req,
    'http://www.ripedev.com/webservices/LocalTime.asmx',
    'http://ripedev.com/xsd/ZipCodeResults.xsd/LocalTimeByZipCode');
    dbms_output.put_line('before return..');
    RETURN demo_soap.get_return_value(resp, 'LocalTimeByZipCodeResult',
    'xmlns="http://www.ripedev.com/webservices/"');
    END;
    BEGIN
    dbms_output.put_line('inside main time_service..');
    END;
    show errors
    SET serveroutput ON
    exec dbms_output.put_line(time_service.get_local_time('94065'));
    Here is demo_soap.sql:
    Rem
    Rem $Header: soapdemo.sql 21-may-2002.13:48:17 rpang Exp $
    Rem
    Rem soapdemo.sql
    Rem
    Rem Copyright (c) 2002, Oracle Corporation. All rights reserved.
    Rem
    Rem NAME
    Rem soapdemo.sql - <one-line expansion of the name>
    Rem
    Rem DESCRIPTION
    Rem A PL/SQL demo package for making SOAP RPC calls.
    Rem
    Rem NOTES
    Rem This demo package can only be used in oracle 9ir2. It utilizes 9iR2's
    Rem XDB (XMLType and HttpUriType) and 9iR1's enhancements to UTL_HTTP to
    Rem make SOAP RPC calls.
    Rem
    Rem MODIFIED (MM/DD/YY)
    Rem rpang 05/21/02 - created
    Rem
    Rem A PL/SQL demo package that makes a SOAP RPC calls.
    Rem
    CREATE OR REPLACE PACKAGE demo_soap AS
    /* A type to represent a SOAP RPC request */
    TYPE request IS RECORD (
    method VARCHAR2(256),
    namespace VARCHAR2(256),
    body VARCHAR2(32767));
    /* A type to represent a SOAP RPC response */
    TYPE response IS RECORD (
    doc xmltype);
    * Create a new SOAP RPC request.
    FUNCTION new_request(method IN VARCHAR2,
    namespace IN VARCHAR2)
    RETURN request;
    * Add a simple parameter to the SOAP RPC request.
    PROCEDURE add_parameter(req IN OUT NOCOPY request,
    name IN VARCHAR2,
    type IN VARCHAR2,
    value IN VARCHAR2);
    * Make the SOAP RPC call.
    FUNCTION invoke(req IN OUT NOCOPY request,
    url IN VARCHAR2,
    action IN VARCHAR2) RETURN response;
    * Retrieve the sipmle return value of the SOAP RPC call.
    FUNCTION get_return_value(resp IN OUT NOCOPY response,
    name IN VARCHAR2,
    namespace IN VARCHAR2) RETURN VARCHAR2;
    END;
    show errors
    CREATE OR REPLACE PACKAGE BODY demo_soap AS
    FUNCTION new_request(method IN VARCHAR2,
    namespace IN VARCHAR2)
    RETURN request AS
    req request;
    BEGIN
    req.method := method;
    req.namespace := namespace;
    RETURN req;
    END;
    PROCEDURE add_parameter(req IN OUT NOCOPY request,
    name IN VARCHAR2,
    type IN VARCHAR2,
    value IN VARCHAR2) AS
    BEGIN
    req.body := req.body ||
    '<'||name||' xsi:type="'||type||'">'||value||'</'||name||'>';
    END;
    PROCEDURE generate_envelope(req IN OUT NOCOPY request,
                   env IN OUT NOCOPY VARCHAR2) AS
    BEGIN
    env := '<SOAP-ENV:Envelope
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <SOAP-ENV:Body><'||req.method||' '||req.namespace||'
    SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'||
    req.body||'</'||req.method||'></SOAP-ENV:Body></SOAP-ENV:Envelope>';
    END;
    PROCEDURE show_envelope(env IN VARCHAR2) AS
    i pls_integer;
    len pls_integer;
    BEGIN
    i := 1; len := length(env);
    WHILE (i <= len) LOOP
    dbms_output.put_line(substr(env, i, 60));
    i := i + 60;
    END LOOP;
    END;
    PROCEDURE check_fault(resp IN OUT NOCOPY response) AS
    fault_node xmltype;
    fault_code VARCHAR2(256);
    fault_string VARCHAR2(32767);
    BEGIN
    fault_node := resp.doc.extract('/soap:Fault',
    'xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/');
    IF (fault_node IS NOT NULL) THEN
    fault_code := fault_node.extract('/soap:Fault/faultcode/child::text()',
         'xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/').getstringval();
    fault_string := fault_node.extract('/soap:Fault/faultstring/child::text()',
         'xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/').getstringval();
    raise_application_error(-20000, fault_code || ' - ' || fault_string);
    END IF;
    END;
    FUNCTION invoke(req IN OUT NOCOPY request,
    url IN VARCHAR2,
    action IN VARCHAR2) RETURN response AS
    env VARCHAR2(32767);
    http_req utl_http.req;
    http_resp utl_http.resp;
    resp response;
    BEGIN
    generate_envelope(req, env);
    -- show_envelope(env);
    http_req := utl_http.begin_request(url, 'POST','HTTP/1.0');
    utl_http.set_header(http_req, 'Content-Type', 'text/xml');
    utl_http.set_header(http_req, 'Content-Length', length(env));
    utl_http.set_header(http_req, 'SOAPAction', action);
    utl_http.write_text(http_req, env);
    http_resp := utl_http.get_response(http_req);
    utl_http.read_text(http_resp, env);
    utl_http.end_response(http_resp);
    resp.doc := xmltype.createxml(env);
    resp.doc := resp.doc.extract('/soap:Envelope/soap:Body/child::node()',
    'xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"');
    -- show_envelope(resp.doc.getstringval());
    check_fault(resp);
    RETURN resp;
    END;
    FUNCTION get_return_value(resp IN OUT NOCOPY response,
    name IN VARCHAR2,
    namespace IN VARCHAR2) RETURN VARCHAR2 AS
    BEGIN
    RETURN resp.doc.extract('//'||name||'/child::text()',
    namespace).getstringval();
    END;
    END;
    show errors

  • Opening a secure web page from oracle forms for credit card validation

    Hi All,
    I searched for the topic in the forms forum but couldn't find a solution.
    Requirement: As per some compliance, our application cannot do a credit card validation from our forms application, instead we need to use a java code which a third party will provide ,it's an iframe (they say, i am layman when it comes to Java, don't know what is it), but they say that, within your forms application you call our iframe do the credit card validation over there get a token of response back from us and use this token as a confirmation in your application.
    Problem: I could not find a solution anywhere wherein i can call a web page from forms. Now, this web page should be modal, i.e. unless i close this page i cannot access my forms application. Please guide me if anyone has done that.
    Secondly if i could make it work, how will i communicate with this external web page, like getting back some token value and use it back in my forms application. I am completely clueless.
    As we are using Oracle designer for generating forms, we cannot use a bean type thing as designer does not have the bean-item type defined!
    Appreciate if anyone could provide me pointers for a solution to this problem statement.
    We are on forms 9i -- Version 9.0.2.11.0
    Edited by: the_wing_rider on Jul 8, 2011 5:10 AM

    The simple way to do it is to use a PJC (java bean) + apache httpclient library..
    If you have a webservice than you can use Axis library and wsdl2java to create java classes from wsdl.
    also you can use httpclient library to simulate http protocol (request/response actions)..
    (for example.. you have a credit card number.. you post this number to specified URL and then you parse the response from credit card validation server)..
    Post here some documentation (specification) on how to call the credit card validation .. (maybe it's a secure webservice?)
    Here you have a httpclient library documentation:
    http://hc.apache.org/httpcomponents-client-ga/tutorial/html/index.html
    Also you can implement bean area in designer.. If you need help I can post here how we do it in our project..
    also look here: Call webservice from PJC over https protocol
    regards
    Peter
    Edited by: Peterv6i on Jul 8, 2011 3:35 PM

  • How to customize an existing OAF page from Oracle, change it and reload it

    Hello all Oracle Developers,
    I am having a question regarding to customization, basically I am going to follow a very simple example.
    We have form: APXVDMVD and OAF web Page AP_APXVDMVD.
    Applying all our custom code via forms personnalisation is piece of cake. However trying to apply the same code to OAF web Page AP_APXVDMVD
    is a total back box for us.
    The basic example seems like this: Suppose that in the Suppliers/Vendors Page we type the supplier name and then right after that we populate in consequence all the fields:
    Taxpayer ID, Tax Registration Number, DUNS Number
    We want to grab the OAF Web page from oracle apply the custom code in java code or whatever necessary to make it work and deploy it onto the server.
    Is this achievable, if so how we can do it??? Can we grab the web page extend the classes that are necessary and deploy the solution. The demo provided from Oracle
    is showing how to create pages from zero, however Oracle have not provided how to grab an existing applications page, put the code and the deploy it
    Let me know any inputs, whatever you did and surely we will be sharing the same stuff all migration R12 long :-)

    Hi,
    You can extend OA framework pages and customize them. There is also a section for customizations in the OA Framework Developer's guide. IF this requires extensive customizations, Iwould advice to be very careful as any extensions should not interfere with the base logic of the pages. Please post here if you need more details.
    The following blog is a good one for some examples.
    http://oracle.anilpassi.com/oa-framework-extending-controller-steps-2.html
    There is also a course for the same if you are interested.
    http://education.oracle.co.uk/html/oracle/15946US/D18280GC10.htm
    Hope this helps..

  • How can I add a podcast episode to an existing web page using iWeb?

    How can I add an episode to an existing web page using iWeb?
    I could probably figure this out but I am afraid if I make changes to the site and re-upload it to the podcast area I will have just doubled it. I see them repeated from time to time.
    What is the proper protocal? Thanks
    Mac G4   Mac OS X (10.4.3)  

    Hi apple-owner,
    Method 1.
    To create this scatter-plot, I selected the whole of Columns A and B. (Shift click on the Column reference tabs).
    The plot ignores blank rows, but they are "ready" for new data:
    Method 2
    If you did not select whole columns, you can extend the "active" rows. Rows 1-5 selected:
    Add more data rows and drag the fill handle (small white circle, bottom right) down
    Regards,
    Ian.

  • 866VAE - cant acces web pages from LAN

    Hi everyone,
    im fighting with Cisco 866VAE-K9 for few days. I have got ADSL2+ line in Cisco, i can ping anything from router (like 8.8.8.8 or www.google.com), test of connection in CCP runs successfully, but i cant acces web pages from LAN computers. From LAN i can ping to any IP adress in internet (like 8.8.8.8), but i cant ping or access domain names of web pages (like www.google.com). I know there is probably something wrong in my config, but after 2 days of googling i cant find where the problem is. Can anybody help?
    Here is my running config:
    Building configuration...
    Current configuration : 8181 bytes
    ! Last configuration change at 11:31:15 UTC Fri Mar 6 2015 by admin
    version 15.2
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname cisco_866vae
    boot-start-marker
    boot-end-marker
    logging buffered 51200 warnings
    enable secret 5 xx
    enable password xx
    aaa new-model
    aaa authentication login default local
    aaa authorization exec default local 
    aaa session-id common
    wan mode dsl
    ip port-map user-protocol--1 port tcp 3500
    ip name-server 8.8.8.8
    ip cef
    no ipv6 cef
    parameter-map type protocol-info yahoo-servers
     server name scs.msg.yahoo.com
     server name scsa.msg.yahoo.com
     server name scsb.msg.yahoo.com
     server name scsc.msg.yahoo.com
     server name scsd.msg.yahoo.com
     server name cs16.msg.dcn.yahoo.com
     server name cs19.msg.dcn.yahoo.com
     server name cs42.msg.dcn.yahoo.com
     server name cs53.msg.dcn.yahoo.com
     server name cs54.msg.dcn.yahoo.com
     server name ads1.vip.scd.yahoo.com
     server name radio1.launch.vip.dal.yahoo.com
     server name in1.msg.vip.re2.yahoo.com
     server name data1.my.vip.sc5.yahoo.com
     server name address1.pim.vip.mud.yahoo.com
     server name edit.messenger.yahoo.com
     server name messenger.yahoo.com
     server name http.pager.yahoo.com
     server name privacy.yahoo.com
     server name csa.yahoo.com
     server name csb.yahoo.com
     server name csc.yahoo.com
    parameter-map type protocol-info msn-servers
     server name messenger.hotmail.com
     server name gateway.messenger.hotmail.com
     server name webmessenger.msn.com
    parameter-map type protocol-info aol-servers
     server name login.oscar.aol.com
     server name toc.oscar.aol.com
     server name oam-d09a.blue.aol.com
    crypto pki trustpoint TP-self-signed-2886901321
     enrollment selfsigned
     subject-name cn=IOS-Self-Signed-Certificate-2886901321
     revocation-check none
     rsakeypair TP-self-signed-2886901321
    crypto pki certificate chain TP-self-signed-2886901321
     certificate self-signed 01
    controller VDSL 0
    class-map type inspect match-any SDM_BOOTPC
     match access-group name SDM_BOOTPC
    class-map type inspect match-any ccp-cls-protocol-p2p
     match protocol edonkey signature
     match protocol gnutella signature
     match protocol kazaa2 signature
     match protocol fasttrack signature
     match protocol bittorrent signature
    class-map type inspect match-all ccp-cls--1
     match access-group name all
    class-map type inspect match-all ccp-cls--2
     match access-group name all1
    class-map type inspect match-any ccp-cls-protocol-im
     match protocol ymsgr yahoo-servers
     match protocol msnmsgr msn-servers
     match protocol aol aol-servers
    class-map type inspect match-any SDM_SSH
     match access-group name SDM_SSH
    class-map type inspect match-any SDM_HTTPS
     match access-group name SDM_HTTPS
    class-map type inspect match-all SDM_GRE
     match access-group name SDM_GRE
    class-map type inspect match-any SDM_SHELL
     match access-group name SDM_SHELL
    class-map type inspect match-any sdm-cls-access
     match class-map SDM_HTTPS
     match class-map SDM_SSH
     match class-map SDM_SHELL
    class-map type inspect match-all sdm-access
     match class-map sdm-cls-access
     match access-group 101
    policy-map type inspect ccp-policy-ccp-cls--1
     class type inspect ccp-cls--1
      pass
     class class-default
      drop
    policy-map type inspect ccp-policy-ccp-cls--2
     class type inspect ccp-cls--2
      pass
     class class-default
      drop
    zone security out
    zone security in
    zone-pair security sdm-zp-in-out source in destination out
     service-policy type inspect ccp-policy-ccp-cls--1
    zone-pair security sdm-zp-out-in source out destination in
     service-policy type inspect ccp-policy-ccp-cls--2
    interface Loopback0
     ip address 192.168.100.1 255.255.255.0
     zone-member security in
    interface ATM0
     no ip address
     no atm ilmi-keepalive
    interface ATM0.1 point-to-point
     pvc 8/48 
      oam-pvc manage
      pppoe-client dial-pool-number 1
    interface Ethernet0
     description $ETH-WAN$
     no ip address
     shutdown
     pppoe-client dial-pool-number 2
    interface FastEthernet0
     no ip address
    interface FastEthernet1
     no ip address
    interface FastEthernet2
     no ip address
    interface FastEthernet3
     no ip address
    interface GigabitEthernet0
     no ip address
    interface GigabitEthernet1
     description $ETH-WAN$$FW_OUTSIDE$
     ip address dhcp client-id GigabitEthernet1
     ip tcp adjust-mss 1412
     shutdown
     duplex auto
     speed auto
    interface Vlan1
     description $FW_INSIDE$
     ip address 192.168.7.1 255.255.255.0
     ip nat inside
     ip virtual-reassembly in
     zone-member security in
     ip tcp adjust-mss 1412
    interface Dialer1
     no ip address
    interface Dialer2
     description $FW_OUTSIDE$
     ip address negotiated
     ip mtu 1452
     ip nat outside
     ip virtual-reassembly in
     zone-member security out
     encapsulation ppp
     dialer pool 1
     dialer-group 3
     ppp authentication chap pap callin
     ppp chap hostname o2
     ppp chap password 0 o2
     ppp pap sent-username o2 password 0 o2
    ip forward-protocol nd
    ip http server
    ip http authentication local
    ip http secure-server
    ip nat source list 101 interface Dialer2 overload
    ip nat inside source static tcp 192.168.7.39 3500 interface Dialer2 3500
    ip nat inside source list 101 interface Dialer2 overload
    ip nat inside source route-map MAP_ACL interface Dialer2 overload
    ip route 0.0.0.0 0.0.0.0 Dialer2 permanent
    ip route 192.168.2.0 255.255.255.0 192.168.7.3 permanent
    ip access-list extended NAT_ACL
     deny   ip 192.168.0.0 0.0.0.255 192.168.0.0 0.0.255.255
     permit ip 192.168.0.0 0.0.0.255 any
    ip access-list extended SDM_BOOTPC
     remark CCP_ACL Category=0
     permit udp any any eq bootpc
    ip access-list extended SDM_GRE
     remark CCP_ACL Category=1
     permit gre any any
    ip access-list extended SDM_HTTPS
     remark CCP_ACL Category=1
     permit tcp any any eq 443
    ip access-list extended SDM_SHELL
     remark CCP_ACL Category=1
     permit tcp any any eq cmd
    ip access-list extended SDM_SSH
     remark CCP_ACL Category=1
     permit tcp any any eq 22
    ip access-list extended all
     remark CCP_ACL Category=128
     permit ip any any
    ip access-list extended all1
     remark CCP_ACL Category=128
     permit ip any any
    access-list 2 remark CCP_ACL Category=2
    access-list 2 permit 192.168.7.0 0.0.0.255
    access-list 101 remark CCP_ACL Category=128
    access-list 101 permit ip any any
    access-list 101 permit udp any any eq domain
    access-list 101 permit udp any eq domain any
    dialer-list 1 protocol ip permit
    dialer-list 2 protocol ip permit
    dialer-list 3 protocol ip permit
    mac-address-table aging-time 15
    route-map MAP_ACL permit 10
    line con 0
     no modem enable
    line aux 0
    line vty 0 4
     exec-timeout 40 0
     password xxxxxxx
     transport input telnet ssh
     transport output telnet ssh
    scheduler allocate 60000 1000
    end

    Hi,
    I would be happy to help but I have one question first: Your configuration contains a lot of cruft generated from SDM/CCP and I am not sure if any of that is really required by you. Do you believe you would be fine with having this entire configuration trimmed down and do just what's supposed to do (routing and NAT), and we had security measures added in later? Just by the way, I do not believe you need the zone-based firewall. In your simple setup with just a few inside/outside interfaces, it does not add any real value apart from making the configuration virtually unreadable. We can easily do the same with IP Inspect.
    Best regards,
    Peter

  • Accessing certain web pages

    The computer is a Toshiba Satellite P205-6337 running Windows Vista Home Premium 32-bit. I can't seem to access certain web pages. One example is I can go to AOl's Homepage with no issues, but the minute I click on anything from the sign-on log-in to an article on the page I get a windows explorer window that states, " Internet Explorer can not open the internet site http://www.aol.com/. And below it "Operation aborted." When I click on OK it then goes back to an Internet Explorer cannot display this page. Thanks in advance.

    Satellite P205-S6337
    You use Internet Explorer 7 still?
       Why do I receive an "Operation aborted" error message when I visit a Web page in Internet Explorer?
    -Jerry

  • How to create a jquery as a table instead of a web page so that it can be embedded into an existing web page

    I am new to Dreamweaver and I just built a jquery with 3 tabs of information I want to put into my existing web page.  It has saved it as an entire webpage, but it needs to be a table that I can insert into my existing web page.  It's 3 tabs that have product information under each tab for my customers to view. How do I do this?

    Let's start at the very beginning.
    #1 Have you defined a Local Site in DW yet?  Without this critical step, DW can't manage links & assets for you.
    Simplified site setup in Dreamweaver CS5 | Learn Dreamweaver CS5 & CS5.5 | Adobe TV
    Once your site is defined -- including the remote server log-in credentials, you can upload files or folders of files by simply clicking the UP arrow which PUTS files to remote server.  See screenshot.  Conversely, the DOWN arrow GETS files from the remote server and saves them to your Local hard drive.
    Nancy O.

  • TS1398 I can't access to the web pages thro' Wi-Fi, after switching on the wi-fi.But if I switch off the iphone andswitch on the phone then I can get the web pages.Daily I have to repeat this process to access the web pages.help to solve the problem.

    I can't access the web pages thro' wi-fi,But if I switch off the phone and thenswitch on the phone again I am able to access the web pages.Daily I have to repeat this process.help to solve this problem.

    Does using 192.168.1.1 get you to the web page?
    Firmware Update Process
    To safely update FW, I recommend doing the following: Download the FW file from the support site first.
    Disable the auto update feature on the router.
    1. Save router config to file first using IE or FF with all security add-ons disabled.
    2. Factory reset the router with all other devices disconnected or turned OFF accept for 1 wired PC.
    http://kb.linksys.com/Linksys/ukp.aspx?pid=80&app=vw&vw=1&login=1&json=1&docid=9d2ff02077f645679972a...
    3. Reload or Update the FW using IE or FF. Just download the FW file to your local wired LAN PC.
    http://kb.linksys.com/Linksys/ukp.aspx?pid=80&app=vw&vw=1&login=1&json=1&docid=0a6881b90224439b92c8d...
    4. Factory reset the router and then set up from scratch first using the local log in link and test with out loading the saved config from file. Check to see if any problems are fixed before loading the saved config from file. Sometimes you need to set up from scratch with out loading the saved config file. Just safer that way.
    PC Web Browser Configurations
    What browser are you using?
    If IE 8, 9, 10 or 11, set compatibility mode and test again.
    Disable any security browser Add-ons like No Script and Ad-Block or configure them to allow All Pages when connected to the router.
    Clear all browser caches.
    Be sure to log into the local log-in account on the router first.

  • Launch a web page from within vsftpd ftp server

    I'm kinda new to all of this so I believe there's a simple solution for what I need I just don't know how it's done.
    So I've configured a vsftpd, ftp server and enabled the anonymous user, therefore when I do
    ftp://my_location.com
    a directory like view is displayed in my web browser, corresponding to /srv/ftp where the files for the anonymous account are kept. Now I've made a little web page and I've copied it there, and can be launched running main.html so the address to access the web page would be
    ftp://my_location.com/main.html
    My problem is that I don't want anybody to have the possibility to see the directory like display so I'm wondering if when someone does ftp://my_location.com can't this be redirected so it will do ftp://my_location.com/main.html instead?, making the display of files and directories impossible from the ftp://my_location.com
    Thanks for your time

    fukawi2 wrote:The FTP protocol does not support redirection like HTTP does. It is a File Transport Protocol (hence, the name!) which is designed to give users a directory listing of files for transferring. You are trying to hammer a nail with a fork (ie, you are using the wrong tool.)
    Okey at least now I know it's not possible.

  • Why does google start up but when i try to access a web page it shuts off

    why does google start up but when i try to access a web page it shuts off

    Not entirely sure what you mean, but if you are saying that the Safari screen is frozen/inactive then try clearing its cache : Settings > Safari > Clear Cookies And Data (Clear Cache on iOS 4) and also Clear History
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How to access a web service from a XLet

    Hello,
    I am new in software development to ITV and I dint find too many usefull information teaching how to access a web service from a XLet running in a STB. Are there anybody who can give me some help, maybe sample or tutorial?
    Gratefull
    David

    hi,
    you can "borrow" the source code from [Yambo a free soft open source presentation engine (AKA XML microbrowser Xlet )|http://www.cineca.tv/labs/mhplab/index-en.html] both local and on a http remote connection.
    hope it helps..
    bye
    andrea

  • Can I print web pages from firefox using adobe pro 9 (Not using PDF download) and if so how

    Can I print web pages from Firefox 3.6.12 using adobe pro 9 (not using PDF Download) and if so how.

    {Ctrl + P} - do you have a PDF Printer listed in the Printer - Name drop-down?

Maybe you are looking for