Sharing network problem - again

Hi, i hoped to avoid posting this problem, but i just can't get internet sharing working!
My setup is this: I have a PC connected directly to a adsl-modem via a netcard, and via a second netcard (and a crossed cable) i have a second PC connected to the first, both are running Archlinux, the first is up to date, but the second is 0.6 (since i can't update...).
The 2 PC's have no problems communicating, ping and ssh is working perfectly both ways.
To share the connection, i have this in the rc.conf:
The one connected to the modem:
lo="lo 127.0.0.1"
eth0="dhcp"
eth1="eth1 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.1.255"
INTERFACES="lo eth0 eth1"
# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
# (prefix a route in ROUTES with a ! to disable it)
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
The one needing the connection:
lo="lo 127.0.0.1"
eth0="eth0 192.168.1.2 netmask 255.255.255.0 broadcast 192.168.1.255"
#eth0="dhcp"
INTERFACES=(lo eth0)
# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
# (prefix a route in ROUTES with a ! to disable it)
gateway="default gw 192.168.1.1"
ROUTES=(gateway)
And i have this "firewall" installed on the one connected to the internet:
#!/bin/sh
# rc.firewall-2.4
FWVER=0.75
# Initial SIMPLE IP Masquerade test for 2.4.x kernels
# using IPTABLES.
# Once IP Masquerading has been tested, with this simple
# ruleset, it is highly recommended to use a stronger
# IPTABLES ruleset either given later in this HOWTO or
# from another reputable resource.
# Log:
# 0.75 - Added more kernel modules to the comments section
# 0.74 - the ruleset now uses modprobe vs. insmod
# 0.73 - REJECT is not a legal policy yet; back to DROP
# 0.72 - Changed the default block behavior to REJECT not DROP
# 0.71 - Added clarification that PPPoE users need to use
# "ppp0" instead of "eth0" for their external interface
# 0.70 - Added commented option for IRC nat module
# - Added additional use of environment variables
# - Added additional formatting
# 0.63 - Added support for the IRC IPTABLES module
# 0.62 - Fixed a typo on the MASQ enable line that used eth0
# instead of $EXTIF
# 0.61 - Changed the firewall to use variables for the internal
# and external interfaces.
# 0.60 - 0.50 had a mistake where the ruleset had a rule to DROP
# all forwarded packets but it didn't have a rule to ACCEPT
# any packets to be forwarded either
# - Load the ip_nat_ftp and ip_conntrack_ftp modules by default
# 0.50 - Initial draft
echo -e "nnLoading simple rc.firewall version $FWVER..n"
# The location of the iptables and kernel module programs
# If your Linux distribution came with a copy of iptables,
# most likely all the programs will be located in /sbin. If
# you manually compiled iptables, the default location will
# be in /usr/local/sbin
# ** Please use the "whereis iptables" command to figure out
# ** where your copy is and change the path below to reflect
# ** your setup
#IPTABLES=/sbin/iptables
IPTABLES=/usr/sbin/iptables
DEPMOD=/sbin/depmod
MODPROBE=/sbin/modprobe
#Setting the EXTERNAL and INTERNAL interfaces for the network
# Each IP Masquerade network needs to have at least one
# external and one internal network. The external network
# is where the natting will occur and the internal network
# should preferably be addressed with a RFC1918 private address
# scheme.
# For this example, "eth0" is external and "eth1" is internal"
# NOTE: If this doesnt EXACTLY fit your configuration, you must
# change the EXTIF or INTIF variables above. For example:
# If you are a PPPoE or analog modem user:
# EXTIF="ppp0"
EXTIF="eth0"
INTIF="eth1"
echo " External Interface: $EXTIF"
echo " Internal Interface: $INTIF"
#======================================================================
#== No editing beyond this line is required for initial MASQ testing ==
echo -en " loading modules: "
# Need to verify that all modules have all required dependencies
echo " - Verifying that all kernel modules are ok"
$DEPMOD -a
# With the new IPTABLES code, the core MASQ functionality is now either
# modular or compiled into the kernel. This HOWTO shows ALL IPTABLES
# options as MODULES. If your kernel is compiled correctly, there is
# NO need to load the kernel modules manually.
# NOTE: The following items are listed ONLY for informational reasons.
# There is no reason to manual load these modules unless your
# kernel is either mis-configured or you intentionally disabled
# the kernel module autoloader.
# Upon the commands of starting up IP Masq on the server, the
# following kernel modules will be automatically loaded:
# NOTE: Only load the IP MASQ modules you need. All current IP MASQ
# modules are shown below but are commented out from loading.
# ===============================================================
echo "----------------------------------------------------------------------"
#Load the main body of the IPTABLES module - "iptable"
# - Loaded automatically when the "iptables" command is invoked
# - Loaded manually to clean up kernel auto-loading timing issues
echo -en "ip_tables, "
$MODPROBE ip_tables
#Load the IPTABLES filtering module - "iptable_filter"
# - Loaded automatically when filter policies are activated
#Load the stateful connection tracking framework - "ip_conntrack"
# The conntrack module in itself does nothing without other specific
# conntrack modules being loaded afterwards such as the "ip_conntrack_ftp"
# module
# - This module is loaded automatically when MASQ functionality is
# enabled
# - Loaded manually to clean up kernel auto-loading timing issues
echo -en "ip_conntrack, "
$MODPROBE ip_conntrack
#Load the FTP tracking mechanism for full FTP tracking
# Enabled by default -- insert a "#" on the next line to deactivate
echo -en "ip_conntrack_ftp, "
$MODPROBE ip_conntrack_ftp
#Load the IRC tracking mechanism for full IRC tracking
# Enabled by default -- insert a "#" on the next line to deactivate
echo -en "ip_conntrack_irc, "
$MODPROBE ip_conntrack_irc
#Load the general IPTABLES NAT code - "iptable_nat"
# - Loaded automatically when MASQ functionality is turned on
# - Loaded manually to clean up kernel auto-loading timing issues
echo -en "iptable_nat, "
$MODPROBE iptable_nat
#Loads the FTP NAT functionality into the core IPTABLES code
# Required to support non-PASV FTP.
# Enabled by default -- insert a "#" on the next line to deactivate
echo -en "ip_nat_ftp, "
$MODPROBE ip_nat_ftp
#Loads the IRC NAT functionality into the core IPTABLES code
# Required to support NAT of IRC DCC requests
# Disabled by default -- remove the "#" on the next line to activate
#echo -e "ip_nat_irc"
#$MODPROBE ip_nat_irc
echo "----------------------------------------------------------------------"
# Just to be complete, here is a partial list of some of the other
# IPTABLES kernel modules and their function. Please note that most
# of these modules (the ipt ones) are automatically loaded by the
# master kernel module for proper operation and don't need to be
# manually loaded.
# ip_nat_snmp_basic - this module allows for proper NATing of some
# SNMP traffic
# iptable_mangle - this target allows for packets to be
# manipulated for things like the TCPMSS
# option, etc.
# ipt_mark - this target marks a given packet for future action.
# This automatically loads the ipt_MARK module
# ipt_tcpmss - this target allows to manipulate the TCP MSS
# option for braindead remote firewalls.
# This automatically loads the ipt_TCPMSS module
# ipt_limit - this target allows for packets to be limited to
# to many hits per sec/min/hr
# ipt_multiport - this match allows for targets within a range
# of port numbers vs. listing each port individually
# ipt_state - this match allows to catch packets with various
# IP and TCP flags set/unset
# ipt_unclean - this match allows to catch packets that have invalid
# IP/TCP flags set
# iptable_filter - this module allows for packets to be DROPped,
# REJECTed, or LOGged. This module automatically
# loads the following modules:
# ipt_LOG - this target allows for packets to be
# logged
# ipt_REJECT - this target DROPs the packet and returns
# a configurable ICMP packet back to the
# sender.
echo -e " Done loading modules.n"
#CRITICAL: Enable IP forwarding since it is disabled by default since
# Redhat Users: you may try changing the options in
# /etc/sysconfig/network from:
# FORWARD_IPV4=false
# to
# FORWARD_IPV4=true
echo " Enabling forwarding.."
echo "1" > /proc/sys/net/ipv4/ip_forward
# Dynamic IP users:
# If you get your IP address dynamically from SLIP, PPP, or DHCP,
# enable this following option. This enables dynamic-address hacking
# which makes the life with Diald and similar programs much easier.
echo " Enabling DynamicAddr.."
echo "1" > /proc/sys/net/ipv4/ip_dynaddr
# Enable simple IP forwarding and Masquerading
# NOTE: In IPTABLES speak, IP Masquerading is a form of SourceNAT or SNAT.
# NOTE #2: The following is an example for an internal LAN address in the
# 192.168.0.x network with a 255.255.255.0 or a "24" bit subnet mask
# connecting to the Internet on external interface "eth0". This
# example will MASQ internal traffic out to the Internet but not
# allow non-initiated traffic into your internal network.
# ** Please change the above network numbers, subnet mask, and your
# *** Internet connection interface name to match your setup
#Clearing any previous configuration
# Unless specified, the defaults for INPUT and OUTPUT is ACCEPT
# The default for FORWARD is DROP (REJECT is not a valid policy)
echo " Clearing any existing rules and setting default policy.."
$IPTABLES -P INPUT ACCEPT
$IPTABLES -F INPUT
$IPTABLES -P OUTPUT ACCEPT
$IPTABLES -F OUTPUT
$IPTABLES -P FORWARD DROP
$IPTABLES -F FORWARD
$IPTABLES -t nat -F
echo " FWD: Allow all connections OUT and only existing and related ones IN"
$IPTABLES -A FORWARD -i $EXTIF -o $INTIF -m state --state ESTABLISHED,RELATED -j ACCEPT
$IPTABLES -A FORWARD -i $INTIF -o $EXTIF -j ACCEPT
$IPTABLES -A FORWARD -j LOG
echo " Enabling SNAT (MASQUERADE) functionality on $EXTIF"
$IPTABLES -t nat -A POSTROUTING -o $EXTIF -j MASQUERADE
echo -e "nrc.firewall-2.4 v$FWVER done.n"
And to start it:
#!/bin/sh
# chkconfig: 2345 11 89
# description: Loads the rc.firewall-2.4 ruleset.
# processname: firewall-2.4
# pidfile: /var/run/firewall.pid
# config: /etc/rc.d/rc.firewall-2.4
# probe: true
# v05/24/03
# Part of the copyrighted and trademarked TrinityOS document.
# http://www.ecst.csuchico.edu/~dranch
# Written and Maintained by David A. Ranch
# [email protected]
# Updates
# 05/24/03 - removed a old networking up check that had some
# improper SGML ampersand conversions.
# Source function library.
. /etc/rc.d/functions
# Check that networking is up.
[ "XXXX${NETWORKING}" = "XXXXno" ] && exit 0
[ -x /sbin/ifconfig ] || exit 0
# The location of various iptables and other shell programs
# If your Linux distribution came with a copy of iptables, most
# likely it is located in /sbin. If you manually compiled
# iptables, the default location is in /usr/local/sbin
# ** Please use the "whereis iptables" command to figure out
# ** where your copy is and change the path below to reflect
# ** your setup
IPTABLES=/usr/sbin/iptables
# See how we were called.
case "$1" in
start)
/etc/rc.firewall-2.4
stop)
echo -e "nFlushing firewall and setting default policies to DROPn"
$IPTABLES -P INPUT DROP
$IPTABLES -F INPUT
$IPTABLES -P OUTPUT DROP
$IPTABLES -F OUTPUT
$IPTABLES -P FORWARD DROP
$IPTABLES -F FORWARD
$IPTABLES -F -t nat
# Delete all User-specified chains
$IPTABLES -X
# Reset all IPTABLES counters
$IPTABLES -Z
restart)
$0 stop
$0 start
status)
$IPTABLES -L
mlist)
cat /proc/net/ip_conntrack
echo "Usage: firewall-2.4 {start|stop|status|mlist}"
exit 1
esac
exit 0
But it just won't work! If you can spot any problems please let me know!
UPDATE:
Just talked to my ISP, and they tell me that my IP-adress is locked to one PC. Could this be the problem? or does the forwarding handles this as well?

Hey tgc, thank you for posting your problem so generously explained!
I had no idea of how to do it, and I only had to change a small obvious typo to make it work. At least I suppose the typo is the reason for your sharing not to work....
Lets see...did you change the
eth0="eth0 192.168.1.2 netmask 255.255.255.0 broadcast 192.168.0.255"
to
eth0="eth0 192.168.1.2 netmask 255.255.255.0 broadcast 192.168.1.255"
just now? I'm sure I had to change that, but I have a strange memory
So, the way the configuraton looks now, works perfectly for sharing my isdn connection with my laptop over wlan.
Desktop: isdn, eth0 -> wireless router / hub
Laptop: wlan0
So, what I'm saying anyway, is that your configuration works for me Thanks!

Similar Messages

  • Screen Sharing/network problem seems confined to 1 volume. What's the fix?

    I am having a networking problem on one of the volumes of my multi-volumed, three-Mac local area network, and I need a networking guru to identify the specific software file(s), application(s), or system configuration that is the cause of the problem. I have already spent several hours checking and re-checking the various hardware and system preference settings involved, and I have narrowed the problem down to a software corruption issue and/or system configuration issue on one volume.
    I now need someone to identify specifically what the nature of the problem is, and how to eliminate it. I am not looking for a sledgehammer solution that says I should re-install all of the Mac OS X software on the problem volume. That may be held in reserve as a last resort. I'm looking for a more elegant approach, one that points out the specific corrupt files to remove without disturbing everything else.
    Here's some background to set the context. I have a MacBook Pro laptop; a PowerMac iMac G5; and a PowerMac G4 hooked up in a network. All are running Leopard 10.5.8. All have file sharing and screen sharing enabled. Besides being able to connect to each other using registered users, my goal here is for each of the Macs to be able to share the screen of the others upon my demand. Since each of the 3 Macs can theoretically share the screens of the other 2, that makes a total of six possible connections. Five succeed; one does not. That's the problem. I am trying to determine why the iMac G5 cannot share the screen of the MacBook Pro.
    The iMac G5 has no problem sharing the screen of the PowerMac G4. That connection is fast and immediate. But, every time that I hit the Share Screen button on the iMac G5 to try to connect to the MacBook Pro, I get a window with the blue barber pole spinning for two or three minutes as it is allegedly "Connecting to Mac Book Pro," followed by a window with a headline telling me that "Connection Failed to MacBook Pro." The text within that window goes on to say: "Please make sure that Screen Sharing (in the Sharing section of System Preferences) is enabled on the computer to which you are attempting to connect. Also make sure that your network connection is working properly."
    Well, as I indicated, the PowerMac G4 has no problem sharing the screen of the MacBook Pro, so the Screen Sharing settings on the laptop are correct; and the iMac G5 can share the screen of the PowerMac G4, so its network connection is working properly in that regard. It is only in regards to sharing the screen of the MacBook Pro that the iMac G5 is not working properly.
    The reason why I say that the issue must be unique to the one volume in question, let's call it "iMacG5 Music," is that another Leopard volume on the same computer has no problem whatsoever in sharing the screen of the MacBook Pro. Whenever I boot up in that volume, let's call it "iMacG5 JMB," it makes a network connection with a registered user name immediately, and it is able to share the screen of the MacBook Pro within a second of my issuing the command. In sharp contrast to the success of the iMacG5 JMB volume, the iMacG5 Music is unacceptably slow (several minutes slow!) in making a network connection with the MacBook Pro, and it always fails to share the screen of the MacBook Pro, preferring instead to take about three minutes to attempt the connection, before announcing its failure.
    Since the iMacG5 Music volume makes an immediate network connection to the PowerMac G4, as well as sharing the screen of the PowerMac G4 the moment I ask it to, I have concluded that the hardware of the iMac G5 is just fine. The problem seems confined to the system software and/or associated networking files that are unique to the iMacG5 Music volume. I just don't know what those files could be, or where the problem lies, so I've issued this call for help.
    Let me add one more little twist to this puzzle which baffles me even more. I use external LaCie Firewire drives as clone backups of my Macs. As part of my trouble-shooting process, I booted up from the cloned versions of the iMacG5 JMB volume and the iMacG5 Music volume. What I learned surprised me!
    The iMacG5 JMB clone worked just fine in making a fast network connection to the MacBook Pro, as well as sharing the screen of the MacBook Pro. I expected that. What I did not expect was that the iMacG5 Music clone was also able to make a fast network to the MacBook Pro, as well as share its screen!
    Yes, that's right. It's weird! Screen sharing works OK when I start-up from the clone of the iMacG5 Music volume, but it does not succeed when I boot up on the source itself! I was surprised to find that out, but I'm glad I did.
    (Over the past few days since I executed the last clone, I did use Drive Genius to de-frag the source volume, and maybe that has contributed to the problem I am now encountering. But it's hard to say, since nothing else seems to be amiss.)
    One solution, I suppose, would be to sync the clone back to the source. But, before I do that, I'm just wondering if anyone has a clue as to the nature of this problem on the source volume and what I might do to remedy it—short of re-installing the system software or restoring from the clone. Anyone have any insight to this problem?

    CORRECTION #2:
    Ignore the previous "CORRECTION" post.
    Oops, excuse me, I wrote that sentence correctly the first time.
    I was trying to point out that the ability of the iMac G5 computer to connect quickly and effectively to the PowerMac G4 when booted up into the iMacG5 Music volume was an indication (to me, anyway) that there is nothing wrong with the computer's hardware, nor its network connection ability, but that the problem lay somewhere in the files/settings used to connect to the MacBook Pro, which it cannot accomplish.
    This is what happens when I get engrossed in one of these technical morasses and it ***** me into its vortex all through the night... time for bed.

  • Network and Sharing Centre problems (again)

    I seem to be tearing my hair out once again with the Network List Service. Several months back the Network and Sharing centre stopped displaying or reporting the active networks, although I was connected with internet access. A consequence was most of the
    Metro apps would not work as they thought the computer was off-line.
    The problem seemed to be that the permissions were wrong in the Network List hierarchy and adding Full Control for my user account in 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
    NT\CurrentVersion\NetworkList' seemed to solve the problem.
    Once again thought the Metro apps are not working reporting no internet connection and the Network and Sharing centre has the following message:
    Unknown
    The service to detect this status is disabled
    More Information
    When I select More Information I get a dialog asking if I want to turn on Network List Service,  when I click "Turn this on' nothing happens. 
    Having looked in the Event Viewer, there are a large number of this entry, maybe it is related?
        DCOM got error "1068" attempting to start the service netprofm with arguments "Unavailable" in order to run the server:
    Network List Service is reported as running in Services.msc. and task  manager.
    I tried to check the permissions in the registry key as I did before but key was missing (i think). I tried switching to a local account on the computer from my Microsoft Live account but no change, although when I checked the registry, the NetworkList
    key was there and the permissions were correct. Maybe I was just looking in the wrong place but I was pretty sure it was missing...
    Not sure where to go next with this.. 

    Hi,
    The Network and Sharing centre opens as normal but where you would normally see 
    'View your active networks' followed by the network or list of networks that you are connected to it just says:
    Unknown (when view your active networks would be)
    The service to detect this status is disabled
    More Information
    Clicking on 'More information' informs me that the Network List Service is not running and asks if I want to start it, clicking yes does nothing. The Network list Service is listed as running in Service.msc
    I have tried a full virus scan and also ran a whole host of anti malware tools and the computer seems clean. I also tried sfc /scannow with no problems detected.
    I restored and old clonezilla backup I had and it is fine now but made a system backup before I did. This is the second time this has happened and I would like to find a solution so I will revert back to the drive image with the issue and post a screen shot. 

  • File sharing network problem

    I have an Airport Extreme (G) base station with an Airport Express acting as a WDS extender. I have two client Macs - a 24" iMac (Intel Dual Core) and an iBook (G4). There are a variety of other clients as well - 2 wireless-G tivos, a Win XP laptop, a wireless ethernet bridge serving a slingbox.
    My problem is with the two Macs. Using Network browser, from the iMac, I can connect to the iBook just fine via AFP. However, when I try to connect to the iMac from the iBook, it tries to use FTP, then I get the error "unable to find alias." Both macs have AppleTalk enabled and both have File Sharing enabled.
    I suspect that the root of the problem may be from the fact that the iMac was set up by copying everything over from an older iMac FP (I've learned my lesson and will not use the Migration Assistant again!). But, I can't figure out how to correct this.
    Thanks!

    Hi franki, I'm glad those web sites were useful.
    Unfortunately I can't advise about your remaining problem because I don't have a suitable Windows computer to try things out on. Maybe somebody else here can.
    I'd suggest you give a few more details about exactly how far you get and at which point things get stuck.
    Also, if nobody on this board can help then you could try another one. There are several boards here related to networking, of which the Tiger Forums Getting Online & Networking one seems to be the most lively.
    MacBook (OS 10.4.8)     iMac G4 (OS 10.3.9)

  • Problems with internet sharing/network connection/ethernet and XBOX 360

    So basically I have a sent my Mac Book Pro 13" (Snow Leopard) away to be fixed, and in return I got a loan Mac Book Pro 15" (Lion). In the two weeks my Mac book was away getting fixed I purchased an XBOX 360, because of my location I am unable to use wireless on my XBOX, so instead I connect the loan Mac Book to the XBOX 360 via network cable.
    This worked fine and I could now connect to XBOX Live and be on the Mac Book at the same time.
    So today my Mac Book (13") is returned, I connect everything up exactly the same also changing the settings on internet sharing making sure that it can be used to send the connection to other devices via ethernet.
    But it just wont connect.
    The XBOX doesnt find the connection like it did before, and it also doesnt register on the MAC Book either.
    I've tried different cables, the same cable I used where it worked before.
    I've tried turning of Virus protection.
    Both still at both ends it is not registering a connection, I have used this Mac Book before through a network cable so I dont think there is a problem there, to my knowledge everything is the same as I did on the other Mac Book but this one does work.
    Have you any advice or tips on how to get this to work?
    Thanks for your time.

    What I did to get my network running again (although I still haven't found out why DHCP has stopped working):
    1. Open the Control Panel of the computer that's trying to connect to the network (not the computer sharing the internet connection)
    2. Go to 'Network' panel, and select the AirPort connection
    3. Under the 'TCP/IP' tab, change 'Configure IPv4' pull-down menu from 'Using DHCP' to 'Manually'.
    4. Enter an IP address between 10.0.2.2 and 10.0.2.256 (I randomly chose 10.0.2.40), a Subnet Mask of 255.255.255.0, and enter 10.0.2.1 in the Router box.
    5. Click "Apply now"
    The computer should now be connected to the network, and able to access the internet. If not, you may need to manually enter a DNS server - put '4.2.2.1' (or an IP for a DNS server provided by your ISP) into the 'DNS Servers' box.
    You need to do that process for each computer you're trying to connect to the shared network, making sure you enter a different IP Address for each.

  • Hyper-V 2012 R2. RemoteFx. "The remote session was disconnected because there were network problems during the licensing protocol. Please try connecting to the remote computer again."

    After a Installation from Windows 8.1/windows 7 everything works fine. For example  Install updates and Software. If I connect the first time a remotefx card i can use RDP as well. But if i restart the host I get the mentioned error. What can I do. These
    Hosts are not in a domain configuration. I tried it too but there was  no difference. I didn't discovered any errors in the eventlog, too. Only an actviex error. But same errors occurs with a succsefull rdp session.
    Also strange is if i start the vm without a remotefx card it works fine again. Only session with a Remotefx card aren't possible anymore.
    Is there a bug or something. I tried it many times with the same error.
    Maybe someone can help me. 
    kind regards  
    Tobi

    Hi Tobi,
    Thank you for posting in Windows Server Forum.
    For a workaround, please try to perform the two steps.
    1. Do NOT enable RDP 8 on the Windows 7 SP1 VM.  You should install RDP 8 and update the ICs though.
    2. Change the connection setting on the client from "Automatically detect" to "LAN"
    Please check again below thread for information.
    a. "The remote session was disconnected
    because there were network problems during the licensing protocol" after enabling RemoteFX Windows 8 VM
    (Please recheck answer by “dgeddes”)
    b. "The remote session
    was disconnected because there were network problems during the licensing protocol" After Installing RemoteFX
    Hope it helps!
    Thanks,
    Dharmesh

  • ITunes 11 can't share on "home sharing" network

    I just downloaded iTunes 11 and now I can't import songs from a computer on my "home sharing" network.  There is no way to drag a title to import it.  What is my problem?

    I was having this problem to. I could see part the contents of the library I wanted to import from. Switched off Home Sharing and Switched it back on again. Then I found two ways to achieve the import.
    1) Turn on View Sidebar, Then you can see the other library in the lefthand pane as in itunes 10. Select the items you want and click on the import button in the righthand bottom cornee.
    2)In the interface without the sidebar there is a drop down select box to allow you to select Music, Movies, TV shows etc. At the bottom the shares available to you are shown click on the one you want. Then select the type of content ie Music Movies etc select the items you want and click on the import button at the bottom right.
    Hope this helps

  • How do you get them to take a network problem seriously?

    I have a couple of websites that I need for work.  For some reason They stopped working with Verizon phones, 3G and 4G, at least in my area around the 28th of march.  They work if you make a wifi connection and with other carriers.  When I finally got to a human she couldn't go off script and kept telling me that I needed to reboot the phone.  The only way that was going to work was if I hung up and rebooted and then went through their voice jail system again.   So I went to a franchisee and had them deal with it.  the only advantage they had was a number to get straight to a real person and they were on another phone so they could go through the rebooting sham.  They gave me a trouble ticket number >(Ticket number deleted)< and the problem is still unresolved.  Although it did briefly work yesterday.
    I can't find any place on their site to check the status of this trouble ticket and haven't heard from them since.  How do I check the status of the ticket and light a fire under them.
    It would be nice if people from around the country could check one of the sites; fsmstamps.com just so I could know if it is my area or everywhere.
    Message was edited by: Verizon Moderator

    It doesn't matter now.  They finally fixed it but the time was far too
    long for me not to have all the service I'm paying for.
    Nevertheless the phone # is <Personal information deleted per the TOS>
    What you really need to resolve is why it is so difficult to report a
    network problem.
    BTW the I posted the ticket number and someone at your end scrubbed it.
    <Personal information such as the phone number and ticket number is not to be posted on the public forum per the Verizon Wireless Terms of Service and should only be shared through a private "Direct Message" (DM for short).>
    Message was edited by: Verizon Moderator

  • Network problems with Apple TV 3 - streaming / home share etc

    My setup:
    iMac (21", mid-2011) running OS X 10.7.3 and iTunes 10.6
    Apple TV 3
    Apple Airport Extreme router
    BT HomeHub 3
    HomeHub is used as a modem (ADSL), wired connection into the Airport Extreme which then provides my wireless network.
    Apple TV set up last Friday (launch day). I have it set to use home-sharing with iTunes, and have tried the YouTube channel. Not tried using the iTunes Store direct.
    Initially had problems with 'streaming' video from iTunes using home-sharing, buffering either took a VERY long time or simply didn't happen at all. After a reset, updating OS X, iTunes, Airport Extreme firmware etc etc it started to work fairly well. Also tried streaming video direct on the YouTube channel (very fast, no buffering delay at all) and using AirPlay from an iPad (again, no problem).
    Tonight, everything appears to be broken. Home sharing from iTunes has taken 2 minutes to buffer 30 seconds of video; YouTube similar; AirPlay from the iPad doesn't appear to be streaming at all.
    Have tried re-starting iTunes; re-starting the Airport Extreme; re-starting the Apple TV. Nothing changing.
    Help?!

    I don't have an answer for this, unfortunately. I've even had my Apple TV replaced (yesterday), and after about an hour of normal operation, it now fails to connect to servers, or connects intermittently and poorly, and it can no longer connect to the iOS Remote app. These are the exact symptoms that prompted the Genius Bar to replace the original unit.
    Either there is a basic flaw in Apple TV, or I'm extremely unlucky. All my other Mac and iOS devices have positively no network problems. Very frustrating.
    WiFi is provided by a late-model AirPort Extreme.

  • Shared access problem

    I have a networking problem and I've exhausted my efforts to troubleshoot it.
    I have three computers on my network, all of which are running the latest version of Network Magic 5.5.9159
    Computer 1 is running Windows 7 and is cabled to the router.
    Computer 2 is running Windows XP and is wireless.
    Computer 3 is running Windows XP and can be run either wireless or cabled.
    From Computer 1, I can see all the shared directories on the two other computers but I CANNOT access the files within those directories.
    From Computer 2, I can see all the shared directories on the two other computers and I CAN access the files within those directories.
    From Computer 3, I can see all the shared directories on the two other computers and I CAN access the files within those directories regardless of whether I'm cabled or wireless.
    I have verified that Pure Networks is included in the firewall exception list on all three computers.
    All three computers have the same Subnet Mask.  I'm using an Engenius ESR600H router.  The wireless connections are encrypted.  
    Any suggestions as to how to get Computer 1 to access the shared files on Computers 2 and 3?
    Bob Svoboda

    Hi,
    Try to check Computer 1 if the homegroup was configured - then disconnect from it. Make sure that you have the same workgroup as well. Then try running Network Magic again. This has nothing to do with Network Magic, it's with the configuration of your Windows 7 computer.
    If everyone needs to believe in something, I believe I'll have another beer..

  • Another version of Leopard - Windows network problems

    Like many others, I have a networking problem after installing Leopard on my G4 Powerbook. I had a successful ethernet network previously using two Windows 98 computers, an iBook G3 running Tiger, and my Powerbook G4 running 10.3.9
    Only the Powerbook was upgraded to Leopard. The Powerbook can see, connect to, and read & write to all other computers using the Finder - Go - Connect to Server command. No problems, so I am better off than many others who have reported worse problems.
    BUT, my Windows PC's cannot see the Leopard machine. I have done what I thought I should in the System Preferences - sharing pane. I have tried setting both folders and drives to shared, and have tried deselecting them and then selecting them again as some have suggested. My Powerbook with Leopard is still invisible to the PC's, both trying to use the "Open" command from a program, or the "Network Neighborhood" command from Windows Explorer.
    Any suggestions? I know that some users cannot talk between PC's and Leopard at all, so I am glad I can at least read & write from the Leopard end!

    Spoke too soon. For the past few weeks since installing Leopard, network connections have been erratic. The Powerbook with Leopard was working well yesterday, but then suddenly ceased to see the Windows computers. For the time being I have gicen up and reinstalled Tiger.
    I will keep checking this forum and give Leopard another try when it seems to work better with networking.
    Makes those Apple TV spots poking fun at Vista users going back to XP seem a little amusing.

  • Home Sharing/Network Connections

    I am immensely frustrated with this new Apple TV. The streaming feature is unreliable. The network connectivity also is unreliable. I have good wifi signal, and a very fast connection. All of my wireless devices connect just fine. I've opened the firewall channels on my router (which, by the way, required more technical knowledge than any end-user product should). I've updated the software, rebooted, reset, rebooted again, turned on and off home sharing, and rebooted again. It still does not work reliably. It will for a while, then it stops. Short of opening all incoming connections in my firewall (which seems stupid) or running ethernet cable through my walls to see if that does it, I'm fresh out of ideas. My old Apple TV never had these problems. Ever. If it did, it was masked by everything being stored locally and not relying on complicated network settings or requiring your computer to be awake to access music. Boo. If it doesn't get remedied, I'm going with the competition.

    If possible... connect the ATV2 to your router via ethernet and see if any of the issues still exist. If all of your problems are wireless related they should go away when you do this.
    Go back to wireless after that but try different locations for the ATV2.
    Change the wireless channel. You would need to do this on the router, ATV2 and any other devices you want present for testing on the wireless network.
    Try a different brand wireless router.

  • MacBook Air wifi internet shared network not working on tethered android phone GT B5122

    MacBook Air wifi internet shared network not working on tethered android phone GT B5122
    I have created a password protected wifi internet network on my Macbook air. I tethered by Andriod phone onto this network, but the internet connection works intermittently on the phone, and when it stops working the network continues to show as connected to the shared network mostly(other times it keeps renewing the wifi IP address on the Andriod phone).
    Also the network the MBA is connected to, is a hardwired one using a SSH login account in a student accomadations.
    I am not sure, but all the restarting and refreshing of system, phone and wifi sharing and re-enabling wifi is not reparing the internet connecting on the wifi network for the phone
    Really puzzled, if this is one of the Apple, Andriod compatability issues.
    Cheers,
    Vivek

    Spanners91 wrote:
    Hi.
    I'm having trouble with the wireless connection on my new home hub 3. Most devices will connect easily, but there are three devices that have trouble connecting. These are an Android Phone (Samsung Galaxy Mini), an android tablet (Sony Tablet S) and an iPod. All of these devices work perfectly on other network connections, and other devices in the house are quite happy connecting to the network.
    The Androids can see the network, and will try to connect to it, but when they do they just go through a loop of "connecting">>"acquiring IP address">>"disconnected". I have tried resetting the Home Hub with a pin, and that lets the devices connect for about 24 hours, but after that time they stop connecting again.
    I'm really not sure what to do to fix the problem, so I will very much appreciate some help.
    Many Thanks.
    My lads SGMini connects perfectly to our hub3
    Have you installed the BTFon app to these devices?
    If so, you could delete it and then see what hapens.....
    -+-No longer a forum member-+-

  • Mobile network problem in my lumia 520

    Once network gone, I have to Restart it then again mobile network come.calling proble occurs many times even network is dispayed. Network problem sshould be rectify.

    Hi mbkrish,
    Do you experience the network issue regardless of your area? Aside from calling, are the other network services working fine like SMS messaging and mobile data connection? Is this for a Lumia 520 as well? If so, I hope you're using a standard microSIM and not a cut one as this is what the phone is designed to use.
    BTW, the reset that the Nokia Care Center recommended is the one under Settings > about, is that right? After the reset, have you checked if the system apps are updated? Go to Settings > swipe to applications > store > check for updates. 
    Let us know how it will go. 

  • Time Machine and Time Capsule - Failing with Network Problem

    My problems with TM/TC have been ongoing for a couple of months now and I am going round in circles - need help.
    This is the second post I have made, the first got lost in people suggesting the obvious - so I will try to be a little more specific if I can.
    I will detail the current state first - i.e. where I am now - after I will list what I have done so far to get to this point.
    Currently, my iMac (intel) is directly connected by Ethernet 1GB to the Time Capsule. The TC is then connected to a Netgear router which in turn is connected to Internet.
    I have no network problems at all - internet connection is fine. the Netgear Router has the latest firmware version and is working fine. The porblems i have are nothing to do with this.
    The time Capsule is in Bridge mode and getting a reserved dhcp IP address from the Netgear router.
    The Time Capsule has been fully reset - i.e. power cable out, hold the reset button, plug in power cable (spark, spark), hold reset button, fast blink for 20 seconds or so, light goes out, release button.
    I have re-applied the latest Time Capsule firmware.
    I have renamed the disk on the Time Capsule.
    I have renamed my iMac and deleted all the time capsule entries from Keychain.
    I have re-installed Mac OSX and re-updated to the latest 10.5.6 release.
    At the moment I have kicked off a backup with a lot of large files - like music folder, video folder etc excluded. I also have parallels and have excluded the disk image. I have 1 other 50GB disk image which is also excluded.
    I am expecting the first initial backup will complete successfully.
    I will then remove music and video from exclusions and allow them to backup. I am expecting this will complete no problem. (I do this because the upcoming problem will happen if I move away from the machine - and I dont want to sit there for 2 days).
    So up to this point TM and TC have performed flawlessly. The issue that follows started happening before the 10.5.6 update after backing up with no issues for months. At this point I will be able to use TM to browse the backup and restore files. I will be able to mount the sparse bundle and browse files. Spotlight reports no issues and indexes quickly.
    If I leave my machine after a successful backup and the hourly update kicks in it will fail with 'A Network problem' basically saying the backup has filed because of a network problem, but is not any more specific, logs show far too much to put the whole thing here, but the following is an excerpt
    Dec 23 05:19:49 MickMac /System/Library/CoreServices/backupd[1499]: Backup destination mounted at path: /Volumes/Backup
    Dec 23 05:19:50 MickMac hdiejectd[1519]: running
    Dec 23 05:19:51 MickMac kernel[0]: jnl: disk1s2: replay_journal: from: 28864512 to: 30084096 (joffset 0x1d0f000)
    Dec 23 05:21:49 MickMac kernel[0]: jnl: disk1s2: journal replay done.
    Dec 23 05:21:49 MickMac /System/Library/CoreServices/backupd[1499]: Disk image /Volumes/Backup/MickMac_001ec215ce76.sparsebundle mounted at: /Volumes/Backup of MickMac
    Dec 23 05:21:49 MickMac /System/Library/CoreServices/backupd[1499]: Backing up to: /Volumes/Backup of MickMac/Backups.backupdb
    Dec 23 05:21:49 MickMac com.apple.launchd[1] (com.apple.netauth.sysagent[1500]): Stray process with PGID equal to this dead job: PID 1503 PPID 1 check_afp
    Dec 23 05:21:55 MickMac fseventsd[38]: event logs in /Volumes/Backup of MickMac/.fseventsd out of sync with volume. destroying old logs. (3627 125 5482)
    Dec 23 05:27:33 MickMac /usr/sbin/ocspd[1539]: starting
    Dec 23 05:30:27 MickMac kernel[0]: ASP_TCP HoldPendingReqs: holding slot 5 reqID 5400 flags 0x9 afpCmd 34 so 0x7e78cc0
    Dec 23 05:30:27 MickMac kernel[0]: ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 0 on so 0x7e78cc0
    Dec 23 05:30:27 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect started /Volumes/Backup prevTrigger 0 currTrigger 1
    Dec 23 05:30:27 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: doing reconnect on /Volumes/Backup
    Dec 23 05:30:27 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: soft mounted and hidden volume so do not notify KEA for /Volumes/Backup
    Dec 23 05:30:27 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: Max reconnect time: 30 secs, Connect timeout: 15 secs for /Volumes/Backup
    Dec 23 05:30:27 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: connect to the server /Volumes/Backup
    Dec 23 05:31:26 MickMac kernel[0]: ASP_TCP CancelOneRequest: cancelling slot -1 error 89 reqID 1 flags 0x9 afpCmd 0 so 0x7e78cc0
    Dec 23 05:31:26 MickMac KernelEventAgent[34]: tid 00000000 received VQ_DEAD event (32)
    Dec 23 05:31:26 MickMac KernelEventAgent[34]: tid 00000000 type 'afpfs', mounted on '/Volumes/Backup', from 'afp_0V1fqC1mgalO00mE1H0Pyetl-1.2d00000a', dead
    Dec 23 05:31:26 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: Open Session failed 57 /Volumes/Backup
    Dec 23 05:31:26 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: max reconnect time reached 60 > 30 /Volumes/Backup
    Dec 23 05:31:26 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: posting to KEAType IO] [ErrNo 5] [IOType Read] [PBlkNum 1248] [LBlkNum 155] [FSLogMsgID 501572642] [FSLogMsgOrder First]
    Dec 23 05:31:26 MickMac kernel[0]:
    Dec 23 05:31:26 MickMac fseventsd[38]: failed to unlink old log file /Volumes/Backup of MickMac/.fseventsd/0000000000ccb02b (Input/output error)
    Dec 23 05:31:26 MickMac kernel[0]: disk1s2: 0x14 (UNDEFINED)."
    It goes on and on and is repeated every hour. For each one I get an error message on screen saying backup failed due to a network error. However I have tried a manual download over the same period set at an extremely slow rate so that it was downloading during this time and it showed no errors. I.e. the network connection from imac, through TC to netgear and out to internet - and monitored this while time machine showed these errors (i.e. at the same time) and this showed no connection problems at all and completed succesfully.
    I know TM uses an internal address to do backups, but uses the same cable and network card to get the job done. I am simply removing the cable as a source of issue although I have also replaced this making no difference.
    Applecare are involved and have so far been sent 2 sets of logs and so far have not been able to find the cause. New TC is on its way to try that, although they think it is something on the imac that is causing this.
    Sleep mode is turned off although screen sleep is on. The tick is not in the box for putting hard drives to sleep whenever possible.
    Now, after this has happened, and back at the machine. I restart both imac and TC. Try running a backup, spotlight starts to re-index - i.e. will mount the backup volume and start the index process, gets to about 90% then fails - again excerpts from log
    "Dec 23 09:18:50 MickMac /System/Library/CoreServices/backupd[161]: Backing up to: /Volumes/Backup of MickMac/Backups.backupdb
    Dec 23 09:18:50 MickMac mds[32]: (/Volumes/Backup of MickMac/.Spotlight-V100/Store-V1/Stores/266E0E5F-E002-4EB5-A049-9B50582510FE)(E rror) IndexCI in ContentIndexOpenBulk:Unclean shutdown of /Volumes/Backup of MickMac/.Spotlight-V100/Store-V1/Stores/266E0E5F-E002-4EB5-A049-9B50582510FE/li ve.0.; needs recovery
    Dec 23 09:18:57 MickMac com.apple.launchd[67] (com.apple.netauth.useragent[147]): Stray process with PGID equal to this dead job: PID 152 PPID 1 check_afp
    Dec 23 09:19:48 MickMac mds[32]: (Error) Server: machmsgdispatch: (ipc/send) invalid destination port [msgh_id 14016]
    Dec 23 09:29:35 MickMac /usr/sbin/ocspd[197]: starting
    Dec 23 09:42:48 MickMac kernel[0]: ASP_TCP HoldPendingReqs: holding slot 11 reqID 3204 flags 0x9 afpCmd 60 so 0x8051b28
    Dec 23 09:42:48 MickMac kernel[0]: ASP_TCP HoldPendingReqs: holding slot 12 reqID 3205 flags 0x9 afpCmd 34 so 0x8051b28
    Dec 23 09:42:48 MickMac kernel[0]: ASP_TCP Disconnect: triggering reconnect by bumping reconnTrigger from curr value 0 on so 0x8051b28
    Dec 23 09:42:49 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect started /Volumes/Backup prevTrigger 0 currTrigger 1
    Dec 23 09:42:49 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: doing reconnect on /Volumes/Backup
    Dec 23 09:42:49 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: soft mounted and hidden volume so do not notify KEA for /Volumes/Backup
    Dec 23 09:42:49 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: Max reconnect time: 30 secs, Connect timeout: 15 secs for /Volumes/Backup
    Dec 23 09:42:49 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: connect to the server /Volumes/Backup
    Dec 23 09:42:49 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: Logging in with uam 10 /Volumes/Backup
    Dec 23 09:42:49 MickMac kernel[0]: AFP_VFS afpfs_DoReconnect: Restoring session /Volumes/Backup
    Dec 23 09:42:49 MickMac kernel[0]: ASP_TCP CancelOneRequest: cancelling slot 11 error 35 reqID 3204 flags 0x19 afpCmd 60 so 0x8051b28
    Dec 23 09:42:49 MickMac kernel[0]: ASP_TCP CancelOneRequest: cancelling slot 12 error 35 reqID 3205 flags 0x19 afpCmd 34 so 0x8051b28"
    And later....
    Dec 23 09:45:49 MickMac kernel[0]: disk1s2: 0x39 (UNDEFINED).
    Dec 23 09:45:49 MickMac KernelEventAgent[34]: tid 00000000 received VQ_DEAD event (32)
    Dec 23 09:45:49 MickMac kernel[0]:
    Dec 23 09:45:49: --- last message repeated 1 time ---
    Dec 23 09:45:49 MickMac kernel[0]: hfs_clonefile: cluster_read failed - 5
    Dec 23 09:45:49 MickMac KernelEventAgent[34]: tid 00000000 type 'afpfs', mounted on '/Volumes/Backup', from 'afp_0V1fqC1mgalO00mE1H0Pyetl-1.2d000005', dead
    Dec 23 09:45:49 MickMac kernel[0]: HFS resolvelink: can't find iNode791959
    Dec 23 09:45:49 MickMac kernel[0]: disk1s2: 0x39 (UNDEFINED).
    Dec 23 09:45:49 MickMac kernel[0]: ore-V1/Stores/6CC2B046-5E28-4179-96B7-9DFF9F7EE431/store.db] [FSLogMsgID 1580919258] [FSLogMsgOrder Last]
    Dec 23 09:45:49 MickMac KernelEventAgent[34]: tid 00000000 found 1 filesystem(s) with problem(s)
    Dec 23 09:45:49 MickMac kernel[0]: jnl: disk1s2: dojnlio: strategy err 0x5
    Dec 23 09:45:49 MickMac kernel[0]: jnl: disk1s2: end_transaction: only wrote 0 of 49664 bytes to the journal!
    Dec 23 09:45:49 MickMac kernel[0]: disk1s2: 0x14 (UNDEFINED).
    Dec 23 09:45:49 MickMac kernel[0]:
    Dec 23 09:45:49: --- last message repeated 1 time ---
    Dec 23 09:45:49 MickMac mds[32]: (/Volumes/Backup of MickMac/.Spotlight-V100/Store-V1/Stores/6CC2B046-5E28-4179-96B7-9DFF9F7EE431)(E rror) IndexSDB in dbcheckdatastore:store.db : dbgetdatastore: ERR: could not read 4096 bytes
    Dec 23 09:45:49 MickMac kernel[0]: disk1s2: 0x14 (UNDEFINED).
    Dec 23 09:45:49 MickMac mds[32]: (/Volumes/Backup of MickMac/.Spotlight-V100/Store-V1/Stores/6CC2B046-5E28-4179-96B7-9DFF9F7EE431)(E rror) IndexCI in CIMetaInfoSync:write err: 5
    Dec 23 09:45:49 MickMac kernel[0]:
    Dec 23 09:45:49 MickMac mds[32]: (/Volumes/Backup of MickMac/.Spotlight-V100/Store-V1/Stores/6CC2B046-5E28-4179-96B7-9DFF9F7EE431)(E rror) IndexCI in CIMetaInfoCreate:Tried to create index when index already existed /Volumes/Backup of MickMac/.Spotlight-V100/Store-V1/Stores/6CC2B046-5E28-4179-96B7-9DFF9F7EE431
    Dec 23 09:45:49 MickMac kernel[0]:
    Dec 23 09:45:49 MickMac mds[32]: (/Volumes/Backup of MickMac/.Spotlight-V100/Store-V1/Stores/266E0E5F-E002-4EB5-A049-9B50582510FE)(E rror) IndexSDB in adddirtychunk:/Volumes/Backup of MickMac/.Spotlight-V100/Store-V1/Stores/266E0E5F-E002-4EB5-A049-9B50582510FE/st ore.db : ERR: Can't write DST header (Input/output error)
    Dec 23 09:45:49 MickMac kernel[0]: disk1s2: 0x14 (UNDEFINED).
    Dec 23 09:45:49 MickMac kernel[0]:
    Dec 23 09:45:49: --- last message repeated 1 time ---
    Dec 23 09:45:49 MickMac kernel[0]: disk1s2: 0x14 (UNDEFINED).
    Dec 23 09:45:49 MickMac kernel[0]:
    Dec 23 09:45:49: --- last message repeated 1 time ---
    Dec 23 09:45:49 MickMac kernel[0]: disk1s2: 0x14 (UNDEFINED).
    Dec 23 09:45:49 MickMac kernel[0]:
    Dec 23 09:45:49: --- last message repeated 1 time ---
    Dec 23 09:45:49 MickMac mds[32]: (/Volumes/Backup of MickMac/.Spotlight-V100/Store-V1/Stores/266E0E5F-E002-4EB5-A049-9B50582510FE)(E rror) IndexSDB in dbflushdatastore:/Volumes/Backup of MickMac/.Spotlight-V100/Store-V1/Stores/266E0E5F-E002-4EB5-A049-9B50582510FE/st ore.db : dbsyncdatastore: write-errors flushing cache/writing map.
    Am I the only one having these problems? any help from anybody please...

    Got the same problem with a 3 months old TC.
    The replacement TC, does it work now flawless?

Maybe you are looking for

  • Final cut Studio 2 - how much a no-go with logic 9?

    I have the new Logic 9 upgrade but I see in the installation notes that the new compressor 3.5 and Soundtrack Pro 3 Is "incompatible" with Final cut studio 2. Now I also run Finalcut studio 2 apps regularly but I hadn't planned on upgrading just yet

  • How to show description instead of code on a view page?

    I'm new so this is probably basic, but I didn't find an answer when I tried searching. I'm using JDeveloper 10.1.3.3, ADF Business Components, ADF Faces. In my application, I have both view pages and edit pages (some users will only have read access)

  • Hostname verifier errors in web service client

    We have a Web service consumer that runs in WebLogic, and we're receiving a hostname verifier error whenever the consumer attempts to contact the external Web service. The error is happening because the certificate's subject is for a hostname that is

  • I cloud account

    Hi can anyone help me or is there a phone number I can ring regarding I cloud accounts... My fathers I cloud account is now blocked we cant get into it because we have forgotten the password I cant remove it to make a new one n his I phone with out p

  • Am I able to replace the screen to my I touch

    am I able to replace the screen of my ipod touch