Asking for your help to Connect 4 Servers Toghether!

Hi. for more than 3 days i'm trying to build multi server's cast Based on the attached model.
Everything I've tried have not helped me.
can you kindly help me to build the right " vhost " file for each server as described in the attached model ???
I really appreciate it
Thank you very much
Elad.
----- THE VHOST -----
<VirtualHost>
          <!-- This tag contains a list of <Alias> tags. -->
          <AliasList>
                    <!-- You can specify additional names by which to connect to this -->
                    <!-- virtual host by specifying the name(s) in one or more Alias  -->
                    <!-- tags. Use this tag if you want to be able to connect to this -->
                    <!-- virtual host with different names. For example, if the name  -->
                    <!-- of this virtual host is "abc.macromedia.com", but you wish   -->
                    <!-- to connect by simply specifying "abc", then you can specify  -->
                    <!-- an alias "abc". Note that "abc" must still map to the same   -->
                    <!-- IP address as "abc.macromedia.com". If more than one virtual -->
                    <!-- host on the same adaptor has defined the same alias, then    -->
                    <!-- the first match that is found is taken. This may result in   -->
                    <!-- unexpected behavior.                                         -->
                    <Alias name="alias1"></Alias>
          </AliasList>
          <!-- Specifies the applications directory for this virtual host. -->
          <!-- The applications directory is the base directory where all  -->
          <!-- applications for this virtual host is defined. An app is    -->
          <!-- considered to be defined if there exists a directory with   -->
          <!-- the application name. If nothing is specified in this tag,  -->
          <!-- the applications directory is assumed to be under the vhost -->
          <!-- directory.                                                  -->
          <AppsDir>${VHOST.APPSDIR}</AppsDir>
  <!-- You can override the settings specified in Server.xml for -->
  <!-- this vhost by uncommenting the tag below. You can disable -->
  <!-- auto-close idle clients for this vhost, or change the max -->
  <!-- idle time for clients connected to this vhost. If the max -->
  <!-- idle time is not specified here, or invalid (i.e. <= 0),  -->
  <!-- then we use whatever was set at the server level.         -->
  <!--
  <AutoCloseIdleClients enable="false">
    <MaxIdleTime>3600</MaxIdleTime>
  </AutoCloseIdleClients>
  -->
          <!-- Specifies max resource limits for this virtual host. -->
          <!-- Resource limits are only honored when running in vhost scope. -->
          <ResourceLimits>
                    <!-- Max number of clients that can connect to this vhost when running as local.  -->
                    <!-- enforced by License key -->
                    <MaxConnections>-1</MaxConnections>
                    <!-- Max number of clients that can connect to this vhost when running as remote. -->
                    <!-- This is enforced by License key -->
                    <MaxEdgeConnections>-1</MaxEdgeConnections>
                    <!-- Max number of app instances that can be loaded. -->
                    <MaxAppInstances>15000</MaxAppInstances>
                    <!-- Max number of streams that can be created. -->
                    <MaxStreams>250000</MaxStreams>
                    <!-- Max number of shared objects that can be created. -->
                    <MaxSharedObjects>50000</MaxSharedObjects>
                    <!-- GC interval for application instances resources in minutes : SharedObjects, Streams and Script engine. -->
                    <AppInstanceGC>1</AppInstanceGC>
          </ResourceLimits>
          <VirtualKeys>
                    <!-- Sets the virtual key mappings for connecting players.          -->
                    <!-- When a FlashPlayer or other connects, they receive a          -->
                    <!-- virtual key that corresponds to the ranges below                    -->
                    <!-- The virtualKey may be reset as a client property in the          -->
                    <!-- server script.  If no key is specified for a player          -->
                    <!-- it will not have a key applied by default: example                    -->
                    <!-- <Key from="WIN 7,0,19,0" to="WIN 9,0,0,0">A</Key>                    -->
          </VirtualKeys>
          <!-- This section specifies virtual directory mappings for resources -->
          <!-- such as recorded streams. By using virtual directories, you can -->
          <!-- share resources across different applications. If the beginning -->
          <!-- portion of a resource's uri matches the virtual directory that  -->
          <!-- is specified, then the storage location of the resource maps to -->
          <!-- the location specified by the virtual directory mapping. To     -->
          <!-- specify a virtual directory mapping, you first specify the      -->
          <!-- virtual directory, followed by a colon, followed by the actual  -->
          <!-- storage location. Finally the first item in the key mapping     -->
          <!-- is the virtual key mapping that corresponds to this directory   -->
          <!-- If the client attempting to play has a key matching this listed -->
          <!-- virtual key, it will take that virtual mapping, example:               -->
          <!-- <Streams key="virtualKey"><virtual dir>;<actual dir></Streams> -->
          <VirtualDirectory>
                    <!-- Specifies virtual directory mapping for recorded streams.   -->
                    <!-- To specify multiple virtual directory mappings for stream,  -->
                    <!-- add additional <Streams> tags; one for each virtual dir     -->
                    <!-- mapping. Syntax for virtual directories is as follows:      -->
                    <!-- <Streams key="virtualKey">foo;c:\data</Streams>.                      -->
                    <!-- This maps all streams whose virtual                               -->
                    <!-- key matches the listed key, if given and                                -->
                    <!-- names begin with "foo/" to the physical directory c:\data.  -->
                    <!-- For example, the stream named "foo/bar" would map to the    -->
                    <!-- physical file "c:\data\bar.flv". Similarly, if you had a    -->
                    <!-- stream named "foo/bar/x", then we first try to find a vdir  -->
                    <!-- mapping for "foo/bar". Failing to do so, we then check for  -->
                    <!-- a vdir mapping for "foo". Since there is one, the stream    -->
                    <!-- "foo/bar" corresponds to the file "c:\data\bar\x.flv".      -->
                    <!-- Virtual keys are optional, but if set allow more than one           -->
                    <!-- mapping                                                                        -->
                    <Streams></Streams>
          </VirtualDirectory>
          <!-- This tag specifies the primary DNS suffix for this vhost. If a  -->
          <!-- reverse DNS lookup fails to return the domain as part of the    -->
          <!-- hostname, then this tag is used as the domain suffix.           -->
          <DNSSuffix></DNSSuffix>
          <!-- This tag specifies a comma delimited list of domains that are   -->
          <!-- allowed to connect to this vhost. If this tag is empty, then    -->
          <!-- only connections from the same domain that is being connected   -->
          <!-- to will be allowed. If this tag is not empty, then only the     -->
          <!-- domains explicitly listed will be accepted. For example,        -->
          <!-- <Allow>macromedia.com, yourcompany.com</Allow> will only allow  -->
          <!-- connections from the macromedia.com & yourcompany.com domains.  -->
          <!-- If you wish to allow localhost connections, you will specify    -->
          <!-- "localhost". For example, <Allow>localhost</Allow>. To allow    -->
          <!-- all domains, specify "all".  For example, <Allow>all</Allow>.   -->
          <Allow>all</Allow>
          <Proxy>
                    <!-- A vhost may be configured to run apps locally or remotely.  -->
                    <!-- A vhost that is not explicitly defined gets aliased to      -->
                    <!-- the default vhost and is configured as such. A proxy server -->
                    <!-- runs all its apps remotely, while a normal server runs all  -->
                    <!-- its apps locally. The following parameter defines whether   -->
                    <!-- this vhost is running local or remote apps, the default is  -->
                    <!-- local. It may be set to either local or remote              -->
                    <Mode>local</Mode>
                        <!-- This setting specifies the time for which this server  -->
        <!-- wait for a response from the remote server before      -->
        <!--  timing out.  Time specified is in seconds. Default    -->
        <!--  value is 2 seconds.                                                   -->
                        <RequestTimeout>2</RequestTimeout>
                    <!-- Whether this is an anonymous proxy. An anonymous proxy does -->
                    <!-- not modify the incoming url. This way it does not disturb   -->
                    <!-- the routing of explicitly chained proxies. It is false by   -->
                    <!-- default, must be true for interception proxies.             -->
                    <Anonymous>false</Anonymous>
                    <!-- Proxy server disk cache settings                            -->
                    <CacheDir enabled="false" useAppName="true">
                              <!-- Specifies the physical location of the proxy cache.  By default   -->
                      <!-- they are placed in cache/ in the server installation directory.   -->
                               <!-- The value entered here must be an an absolute path; relative      -->
                              <!-- paths will be ignored and will revert to the default directory.   -->
                              <Path></Path>
                              <!-- Specifies the maximum allowed size of the disk cache, in          -->
                              <!-- gigabytes.  AMS does LRU cleanup of the cache to keep it under    -->
                  <!-- the maximum.  The default value is 32 GB.  A value of 0 will      -->
                              <!-- disable the disk cache.                                                                   -->
                              <MaxSize>32</MaxSize>
                    </CacheDir>
                    <!-- A proxy's outgoing connection can be bound to a specific    -->
                    <!-- local ip address. This allows for separating incoming and   -->
                    <!-- outgoing connections onto different network interfaces. This-->
                    <!-- is useful in configuring a 'Transparent' or 'Interception'  -->
                    <!-- proxy. If a LocalAddress is not specified, then outgoing    -->
                    <!-- connections bind to INADDR_ANY, which is the default.       -->
                    <!-- If a literal address is specified here, the IP version of literal -->
                    <!-- address must match the IP version of the Origin server's address. -->
                    <!-- The workaround is to use the hostname of the network interface    -->
                    <!-- (hostname with both A and AAAA DNS records) that will bind to     -->
                    <!-- either the IPv4 or IPv6 address of the interface.                 -->
                    <LocalAddress></LocalAddress>
                    <!-- This section specifies routing information. Administrators  -->
                    <!-- can configure how to route connections based on the desired -->
                    <!-- destination.                                                -->
                    <!-- The protocol attribute specifies the protocol to use for    -->
                    <!-- the outgoing connection. If specified, it must be set to    -->
                    <!-- either "rtmp" or "rtmps" to indicate a non-secure or secure -->
                    <!-- connection respectively. If nothing is specified, the       -->
                    <!-- out-going connection will use the same protocol as the      -->
                    <!-- in-coming connection. You can override this for each route  -->
                    <!-- entry by specifying a protocol tag attribute in each        -->
                    <!-- <RouteEntry> tag. If none is specified, it will use what is -->
                    <!-- configured in the <RouteTable> tag.                         -->
                    <RouteTable protocol="rtmp">
                              <!-- Maps a host:port pair, to a different host:port pair.   -->
                              <!-- This tag is in the form <host1>:<port1>;<host2>:<port2> -->
                              <!-- where host1:port1 is the host and port of the desired   -->
                              <!-- destination, and host2 and port2 is what should be used -->
                              <!-- instead. In other words, connections to host1:port1 are -->
                              <!-- routed to host2:port2 instead. For example,             -->
                              <!-- <RouteEntry>foo:1935;bar:80</RouteEntry>                -->
                              <!-- This says to route connections destined for host "foo"  -->
                              <!-- on port 1935, to host "bar" on port 80.                 -->
                              <!-- We also allow the use of the wildcard character '*' to  -->
                              <!-- replace <host> and/or <port>. For example,              -->
                              <!-- <RouteEntry>*:*;foo:1935</RouteEntry>                   -->
                              <!-- This says route connections destined for any host on    -->
                              <!-- any port to host "foo" on port 1935.                    -->
                              <!-- '*' can also be used on the right-hand side. When used  -->
                              <!-- on the right-hand side, it means that the corresponding -->
                              <!-- value on the left-hand side should be used. For example -->
                              <!-- <RouteEntry>*:*;*:80</RouteEntry>                       -->
                              <!-- This says route connections destined for any host on    -->
                              <!-- any port, to the same host on port 80.                  -->
                              <!-- Additionally, you can also specify that a host:port     -->
                              <!-- combination be routed to null, which essentially means  -->
                              <!-- that connections destined for that host:port combo will -->
                              <!-- be rejected. For example,                               -->
                              <!-- <RouteEntry>foo:80;null</RouteEntry>                    -->
                              <RouteEntry>1.1.1.1:1935;2.2.2.2:1935</RouteEntry>
                    </RouteTable>
                    <!-- This section configures edge auto-discovery. When an edge   -->
                    <!-- connects to another server, that server may be part of a    -->
                    <!-- cluster. This edge will try to determine which server in    -->
                    <!-- that cluster we should connect to (which may or may not be  -->
                    <!-- the server specified in the uri).                           -->
                    <EdgeAutoDiscovery>
                              <!-- Specifies whether edge auto discovery is enabled (true) -->
                              <!-- or disabled (false). Default is disabled.               -->
                              <Enabled>true</Enabled>
                              <!-- This specifies whether or not to allow overriding edge  -->
                              <!-- auto-discovery (by specifying "rtmpd" protocol). If     -->
                              <!-- enabled, edge auto-discovery is performed by default.   -->
                              <AllowOverride>true</AllowOverride>
                              <!-- Specifies how long to wait (msec) for auto-discovery.   -->
                              <!-- Warning: don't set this too low. It must be long enough -->
                              <!-- to establish a TCP connection, perform a UDP broadcast, -->
                              <!-- collect the UDP resposnes, and return an XML response.  -->
                              <WaitTime>1000</WaitTime>
                    </EdgeAutoDiscovery>
                    <!-- If this vhost is remote mode, and you wish to configure the -->
                    <!-- properties of an out-going ssl connection to an upstream    -->
                    <!-- server, then enable this section and configure SSL props    -->
                    <!-- appropriately. The absence of the <SSL> tag will mean that  -->
                    <!-- ssl connections to upstream servers will use the default    -->
                    <!-- configuration specified in the <SSL> section of Server.xml. -->
                    <!-- For more information on each of these tags, see comments in -->
                    <!-- Server.xml. Note: this section if uncommented is ignored if -->
                    <!-- proxy mode is local.                                        -->
                    <!--
                    <SSL>
                              <SSLVerifyCertificate>true</SSLVerifyCertificate>
                              <SSLCACertificatePath></SSLCACertificatePath>
                              <SSLCACertificateFile></SSLCACertificateFile>
                              <SSLVerifyDepth>9</SSLVerifyDepth>
                              <SSLCipherSuite>ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH</SSLCipherSuite>
                    </SSL>
                    -->
                    <!-- When a VHost is configured as proxy, the "enabled"       -->
                    <!-- attribute will determine whether aggregate messages will -->
                    <!-- be delivered from the edge cache.  Default is "true".   -->
                    <!-- If the edge server receives aggregate messages from the  -->
                    <!-- origin when this setting is disabled, the messages will  -->
                    <!-- be broken up before being cached.                        -->
                    <AggregateMessages enabled="true">
                              <!-- This setting determines the size (in bytes) of aggregate  -->
                              <!-- messages returned from the edge cache (when aggregate     -->
                              <!-- messages are enabled).  Note that this setting only       -->
                              <!-- applies to messages retrieved from the disk cache.        -->
                              <!-- Aggregate messages received directy from the origin server-->
                              <!-- will be returned as-is, and therefore their size is       -->
                              <!-- determined by the origin server's settings for aggregate  -->
                              <!-- message size. Default is 65536                            -->
                              <!-- <MaxAggMsgSize>65536</MaxAggMsgSize> -->
                              <!-- Maximum Duration in Millisconds of an aggregate message while -->
                              <!-- reading from edge disk cache. Default is 10000 Millisconds. -->
                              <!-- <MaxAggMsgDuration>10000</MaxAggMsgDuration >                    -->
                    </AggregateMessages>
          </Proxy>
          <!-- This section controls some of the logging behaviors.                      -->
          <Logging>
                    <!-- This section controls access log.                                 -->
                    <Access>
                              <!-- You can override the settings specified in Server.xml for -->
                              <!-- this vhost by uncommenting the tag below. You can disable -->
                              <!-- logging checkpoints for this vhost, or change the         -->
                              <!-- checkpoint interval of this vhost. If the checkpoint      -->
                              <!-- interval is not specified here, or invalid (i.e. <= 0),   -->
                              <!-- then we use whatever was set at the server level.         -->
                              <!--
                              <Checkpoints enable="false">
                                        <LogInterval>3600</LogInterval>
                              </Checkpoints>
                              -->
                    </Access>
          </Logging>
</VirtualHost>

You've now posted at least three times now and have been given the same answer every time. You've also had your posts editied for personal information every time.
We cannot help you get past the Activation Lock, only the person to whom it is locked can. We cannot help you unlock the phone from a carrier; only the carrier to which it is locked can.

Similar Messages

  • HT202605 I am asking for your help to unlock an iphone 5

    Hello, I live in Ukraine in the city of Lviv. I am writing with hope that you can help me with this matter. I am asking for your help to unlock an phone 5 which I bought from Ebay and did not realize that it was blocked. Now that I paid for it and it is locked, I feel very frustrated and there is nothing much that I can do. It was suppose to be a Christmas gift which was meant to be for my wife. She also feels upset that I haven't checked it when buying. I am kindly asking for your understanding and help to unlock this phone. Info: IMEI ***** serial F2*****TTN     I repeatedly wrote to the company Tellus what was the phone to help me unlock the phone but they are not interested! Told apply to private companies silt to you! Help me please!   
    Sincerely,  My contact details *******
    <Personal Information Edited by Host>

    You've now posted at least three times now and have been given the same answer every time. You've also had your posts editied for personal information every time.
    We cannot help you get past the Activation Lock, only the person to whom it is locked can. We cannot help you unlock the phone from a carrier; only the carrier to which it is locked can.

  • Sir/maam, i am kenneth. i both an ipad for my mom. i register it in icloud. my concern is that wen i restore my mom's ipad, apple is asking for the registered email and password. i forgot those details i put on it that's i decided to ask for your help.

    sir/maam, i am kenneth. i both an ipad for my mom. i register it in icloud. my concern is that wen i restore the ipad, apple is asking for the registered email and password. i forgot those details i put on it that's i decided to ask for your help. only thing i remembered is the apple id that i made for her.

    Go to http://appleid.apple.com and click 'Find your Apple ID'. Follow the instructions and hopefully you will be able to identify your ID.

  • Failed iPhone sync as iTunes states random song files "could not be read". I politely ask for your help!

    Hello
    Been having this problem for awhile now:
    When I attempt to sync my iPhone, iTunes will start syncing but after every few songs it syncs, iTunes interrupts the sync with a message saying the file could not be imported since it could not be read. I can go to that song iTunes can't import in my list of music and play it in iTunes and verify that it isn't corrupted.
    Does anyone know what the issue is? Here is what I have tried so far:
    * Restore entire iPhone
    * Remove iTunes and all preferences, re install and re import music library
    * Change file import settings to iTunes Plus AAC conversion (Not sure this even does anything)
    * Manually converting EVERY song (Shift+Clicking) to AAC
    * Attempt to sync music manually (e.g. only checked items)
    The message is as follows: iTunes could not copy "such and such song" to the iPhone because the file could not be read. This error happens with a different song each time I remove the previous one indefinitely, I have over 3000 songs, and it would take me days before I could manually remove each song iTunes deems unworthy of syncing (if at all). And this ONLY happens if I am fortunate enough for iTunes to even attempt to sync the tracks, usually it just skips that step entirely saying it's been completed, with no music actually transferred...
    I am leaving on an international trip soon and I very much want to have hard copies of my music with me, I've been wracking my brain for ages now and haven't been this frustrated since freshmen year of highschool.
    (╯°□°)╯︵ ┻━┻
    * iPhone 5S - iOS 7.1.1
    * Windows 8.1
    * iTunes 11.2.2
    TL;DR: Everytime I try to sync my songs onto my iPhone, I get an error message that says "iTunes could not copy "(song name)" to the iPhone because the file could not be read or written." and then it stops syncing completely, so the rest of the songs after that don't get put on my iPhone. File is playable and not corrupt.

    Hi skyvandyk,
    It sounds like one of your music files may have been corrupted at some point and when trying to sync that song the iPhone is unable to do so. I know this must be a frustrating issue for you.
    What I would suggest is that you first attempt to sync your iPhone without that particular song. To do this you will need to manually manage the music that goes to your iPhone. This article will tell you how -
    Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/HT1535
    If the song was purchased from the iTunes store you can delete it and download again at no cost, if it is still available. See this article -
    Download past purchases
    http://support.apple.com/kb/HT2519
    If the song came from a CD or another source you may have to get it again from that source.
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Asking for your help... a message in a bottle!

    I need to import onto my new I pad many pdf documents I need to see when I am at work. How to?

    Francesco ~ Welcome to the Support Communities. Let me... Well, see for yourself by clicking HERE. This app in particular may be of interest:

  • I urgently ask for your help.

    My laptops case, on the right of the finger pad, where my laptop closes, on one side that the thing that pokes out from the top on the left of the webcam, when it closes, it has left a mark. Now I have a crack. How can I repair the crack?
    Please help me.

    speak about common sense ... well I got it repaired thanks

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

  • My Blu-Ray player has a USB input but it doesn't have an HDMI input. Can I connect my Apple TV to the Blu-Ray using an HDMI/ USB adapter? It would allow me to run the audio through my stereo. Thanks to all for your help.

    My Blu-Ray player has a USB input but it doesn't have an HDMI input. Can I connect my Apple TV to the Blu-Ray using an HDMI/ USB adapter? It would allow me to run the audio through my stereo. Thanks to all for your help.

    Can I connect my Apple TV to the Blu-Ray using an HDMI/ USB adapter?
    If you can find such a thing.  I really doubt that exists since USB is a data connector not a video connector.
    would allow me to run the audio through my stereo.     
    That would depend on this adapter.

  • I cannot connect my iPhone 5 32GB IOS 6.02 to iTunes 11.01 on a Mac Book Pro. The screen freezes and doesn't recognize the iPhone at all. Thank you for your help.

    I cannot connect my iPhone 5 32GB IOS 6.02 to iTunes 11.01 on a Mac Book Pro. The screen freezes and doesn't recognize the iPhone at all. Thank you for your help.

    Read here.
    http://support.apple.com/kb/TS1591

  • My Ipad has been locked (after wrong passcode) and tried to connect to Itunes but no success. Much appreciated for your help please.

    Dear Sir/Madam,
    I tried the following but no success:
    1. Unplug the sync cable from device.
    2. Turned off device (slide to power off).
    3. Pressed and hol the Home botton and pluged in the sync cable.
    4. Hold Home button until "Connect to iTunes" but this message did not appear
    So couldn't go any further than this.
    Looking forward for your help please.
    Kind regards,
    GS

    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    This is an iPad user to user forum. Apple doesn't read or respond.
     Cheers, Tom

  • When i connect my MB Pro to external monitor, I notice the wireless internet speed decreases almost 3 time.  is there a solution to this? thanks for your help in advance

    When i connect my MB Pro to external monitor, I've noticed my wireless internet speed decreases almost 3 time.  is there a solution to this? thanks for your help in advance

    "How do I find that IP address because I put in the 192.168.1.8.."
    That's not the router's IP address. Most likely it will be 192.168.1.1
    System Preferences>Network>Advanced>TCP/IP should show it.

  • I want to edit tunes from my violin lessons so I can play along without constantly having to stop the playing and re-set back to the beginning.  How do I do that?  Am I asking the correct group? Thanks for your help!

    My violin teacher records tunes for me to practice at home.  I download the recording onto iTunes.  I want to replay the same tune over and over again without having to stop every single time to manually re-set and re-start the same tune.  It would be better if I could edit out some of the verbal instructions if possible.
    I can't even figure out how to replay any single tune over and over again.  I apologize if I chose the wrong group.  If so maybe someone could steer me in the right direction.
    Thank you so much for your help.
    Barbie5

    If you have further queries along these lines the best place would be in the iTunes Forum.

  • I am from Brazil, and i have an iphone 5. Since it was purchased the 3G/4G data signal doesn't work. I made contact with people in Apple from Brazil and they told me I had to ask for your support to unlock the 3G/4G data signal.

    I am from Brazil, and i have an iphone 5. Since it was purchased the 3G/4G data signal doesn't work. I made contact with people in Apple from Brazil and they told me I had to ask for your support to unlock the 3G/4G data signal. How do I have to proceed to unlock this feature in my iphone?
    I would appreciate if you can help me.
    Thanks!

    Greetings alex.bonifacio! I'm very sorry that you're having connection problems with your iPhone 5. While would love to help in any way I can, the device must at least be on an active line of service with Verizon Wireless in order for me to be able to make any changes. I must therefore urge you to contact your local wireless carrier for your equipment options. Good luck and thanks!
    DionM_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • I need to delete files from my iMac hard drive, but not from my other devices (that are sync. to iCloud). How do I do this?? My Mac is a 24-inch Mid 2007 running on Mountain Lion. Thanks for your help.

    I have recently recieved messages indicating that my start up disc is almost full. Consequently I need to remove some files from my hard drive. I've backed up my hard drive onto a NAS system & onto an external harddrive. The problem now, is that whenever I try to delete a file, a message comes up saying that if I remove this file from my hard disc it will remove it from all my other devices that are syn. to it. How do I remove a file (movies) from my iMac but not from other devices.
    Thanks for your help
    Robert

    You're right - this question has nothing to do with iSync!
    You're best bet would be to buy yourself an external Firewire or USB 2.0 hard-disk. There's no way you'll get 150gb onto an 80gb drive - certainly not in an instantly accessible way.
    Your new Mac would've had the Migration Assistant appear during the initial OS install. This allows you to connect your new and old Mac together via a Firewire cable and automatically transfer your important files from old Mac to new.
    Once you've all the files off your old Mac, re-format it and re-install the OS that came with it. If you boot up the Mac from the OS install DVD, there is an option to re-format the HD and install the OS.
    See this Apple support page:
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh1103.html

  • Hi, I have an iPhone 1 that is blocked (because of wrong passwords) and isn't recognized by iTunes. How do I fix this? Thanks for your help!

    Hi, I have an iPhone 1 that is blocked (because of wrong passwords) and isn't recognized by iTunes. How do I fix this? Thanks for your help!
    By the way I'm using a MacMini and all operating systems are up to date including iTunes.

    First try a Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least Ten seconds... (But can take Longer)... until the Apple logo appears. Release the Buttons
    If no joy... Try a Restore...
    1: Connect the device to Your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    Restoring  >  http://support.apple.com/kb/HT1414
    3: If the device doesn't appear in iTunes, try using the Steps in this article to force the device into Recovery Mode.
    Make sure you have the Latest Version of iTunes (v11.1.5) Installed on your computer
    iTunes free download from www.itunes.com/download

Maybe you are looking for