Too many sharepoints when connecting to server

I have a 10.5.8 Tiger server. I am upgrading to the new Lion Server. I have setup the server, created users and groups and setup Sharepoints using the Server App. The problem is I have several sharepoints specific to certain groups. In Tiger the user would mount the server from GO/Connect to Server.
There would be only one volume or sharepoint available. Once mounted they would only have access to the directories/sharepoints for their group. The
other directories would be locked. This is still the case with Lion once they mount the main volume.
However the difference in Lion I am trying to figure out is ALL the sharepoints I have created show up in the list of the mounted server when connecting through GO/Connect to Server. Even the sharepoints a certain user does not have access to. When they try and mount the shrepoint they do not have access to they are given a message that they do not have access to this sharepoint. How can I hide those sharepoints from showing up in the mount window? In Tiger I have the same amount of sharepoints but only one volumes shows up for the users to mount.

Dick,
I know this sounds silly but while in Finder goto (Finder)/(Preferences) and then make sure your on the (General) tab, make sure all the things you want to show are checked.
If that doesn't help move the com.apple.finder.plist to the desktop you can find in in ~/Library/Preferences ( ~ = Your Home Folder), log out/log in, and see if that fixes the problem if not go ahead and move the plist file back.
hope that helps,
Weston

Similar Messages

  • I tried to send a mail message to too many addees. when the rejection came back "cannot send message using the server..." the window is too long to be able to see the choices at the bottom of it. how can i see the choices at the bottom of that window?

    I tried to send a mail message to too many addees. when the rejection came back "cannot send message using the server..." the window is too long to be able to see the choices at the bottom of it. how can I see the choices at the bottom of that window?

    I tried to send it through gmail and the acct is  a POP acct
    I'm not concerned about sending to the long address list. I just can't get the email and window that says "cannot send emai using the server..." to go away. The default must be "retry", because although I cannot see the choices at the bottom of the window if I hit return it trys again... and then of course comes back with the very long pop up window that I cannot see the bottom of so I can tell it to quit trying...

  • 421 Too many concurrent SMTP connections; please try again later.

    Hi,
    At first I send an email, it works fine. After i try again but this time, i get "421 Too many concurrent SMTP connections; please try again later". What do i have to do? Thanks
    create or replace PROCEDURE SEND_MAIL
    (name_in IN Varchar, surname_in IN Varchar, email_in IN Varchar)
    IS
    conn utl_smtp.connection;
    BEGIN
    conn := utl_smtp.open_connection ( 'mail.ppp.com', 25 ); -- SMTP database host and on port 25
    utl_smtp.ehlo( conn, 'mail.ppp.com' );
    utl_smtp.command(conn, 'auth login');
         utl_smtp.command(conn,UTL_RAW.CAST_TO_VARCHAR2(utl_encode.base64_encode(utl_raw.cast_to_raw('oooo'))));
         utl_smtp.command(conn,UTL_RAW.CAST_TO_VARCHAR2(utl_encode.base64_encode(utl_raw.cast_to_raw('oooo'))));
    utl_smtp.mail( conn, '[email protected]' );
    utl_smtp.rcpt( conn, email_in );
    utl_smtp.data( conn,
    'From: Rental' || utl_tcp.crlf ||
    'To: ' || eremail_in || utl_tcp.crlf ||
    'Subject: ' || 'Confirmation' ||
    utl_tcp.crlf || 'Dear'||' '||name_in||' '||surname_in||','
    ||chr(13)||chr(10)||chr(13)||chr(10)||'Welcome'
    utl_smtp.quit(conn);
    END;
    Message was edited by:
    veledrom

    Sounds like you have an exception in the code and not protecting the resource - which means resource leakage.
    In your case, not closing TCP socket connections to the SMTP server. This then results in the SMTP server refusing to allow you more connections.
    Or.. there is simply too many concurrent connections from different users/sessions/processes at the same time and it cannot service your connection.
    PL/SQL does not specifically support a resource protection block. These are typically in the form of:
    allocate resource;
    try
    use resource;
    finally
    release resource;The intention being that should sosmething go pear shape while using that resource, the resource is protected and released - thus preventing that resource from leaking all over the code and the server.
    In PL/SQL we can only achieve this by creating an exception handler, releasing the resource (if allocated) and then re-raising the exception.
    Suggest that you consider this approach whenever you allocate anything in PL/SQL - from a TCP socket handle to LOB locater or ref cursor.

  • Digital Editions - too many activations when trying on Windows 8.1 system  HELP!

    Digital Editions - too many activations when trying on Windows 8.1 system  HELP!

    This is the Reader mforum. The Digital Editions one is here:
    http://forums.adobe.com/community/adobe_digital_editions

  • Automount Sharepoints via Connect to Server...

    I have a number of sharepoints assigned to different users and groups....freelancers only have access to certain folders but managers have access to everything.
    They are working on local accounts at the client machines which are not connected in any way to the server. They connect to the sharepoints via 'connect to server' in the 'go' menu. Is there any way of automounting chosen sharepoints without viewing a huge list of all of the sharepoints available?
    I don't want users to have to log into their account on the local machines...
    Thanks...

    There are a couple of hints at macosxhints that cover this.
    http://www.macosxhints.com/article.php?story=20020315095604777 or
    http://www.macosxhints.com/article.php?story=20020911061931546
    HTH
    Regards.

  • Too many open socket connections causing ColdFusion to crash?

    I’m currently working on an e-commerce site which sends and receives information to/from the client’s order management system via XML over a TCP/IP socket.  It uses a very old java-based custom tag called CFX_JSOCKET (which appears to have been written in 2002) to open the socket, send the data, and get the response.  The code that calls the custom tag and sends/receives data from the OMS pre-dates my working on the site, but its always worked, so I haven’t paid it much attention.
    Back in the summer of 2009 we started experiencing issues with ColdFusion (v.7 on Window 2003 at the time) locking up on a more and more frequent basis, until it ultimately became a daily issue.  After extensive research we narrowed the issue down to the communication between the web server and our client’s order management server.  It seemed the issue with ColdFusion hanging was either related to there being too many connections open, or to these connections hanging and resulting in dead threads.  This an educated guess based on a blog post I’d seen online, not actual monitoring of either CF or the TCP/IP connections.  As soon as we dialed back the timeout on the CFX_JSOCKET tag from 20 seconds to 10, the issue disappeared, so we left it at that and moved on.
    Fast forward to this January. The site is hosted at a new location, on a 64-bit Windows 2008 box running ColdFusion 9.  Over the years traffic on the site has continued to grow.  The nature of the clients business means that August and January are their business times of the year (back to school for college kids) and in January ColdFusion once again started locking up on an almost-daily basis.  
    One significant difference is that the address cleansing software that previously ran on the box and was used to verify shipping addresses is not available for 64-bit, so when we moved to the new server last summer, that task was moved to the client’s order management software and handled via XML like all other interaction with that system. However, while most XML calls to that server (order input, inventory check, etc) take under a second to complete, the address cleansing call regularly takes over 5 seconds to return data, and frequently times out. 
    Once we eliminated the address cleansing call from the checkout process, ColdFusion once again stopped locking up regularly.  So it appears that once again it’s the communication between the web server and the order management server that’s causing problems. We currently have that address cleansing call disabled on the web site in order to keep ColdFusion from crashing, but that’s not a long term solution.
    We don’t have, nor can I find online, the source code for the CFX_JSOCKET custom tag, so I decided I’d write some CF code utilizing the java methods to open the socket, send the data, get the response, and close the connection.  My test code is working fine (under no load).  However, in trying to troubleshoot an issue I had with it, I started monitoring the TCP/IP connections using TCPView.  And I noticed that all the connections to the order management server, whether opened via the custom tag or my new code, remain open in either a TIME_WAIT or FIN_WAIT2 status for well over 2 minutes, even though I know for a fact that my new code is definitely closing the connection from the web server side. 
    They do all close eventually, but I’m wondering 1. Why they’re remaining open that long; 2. Is that normal; and 3. If all these connections remaining open could be what’s causing ColdFusion to choke. 
    Does this sound plausible?  If so, does anyone have any suggestions/recommendations about how to fix it?  My research seems to indicate this might be a matter of the order management system not closing the connection on its end, but I’m in way over my head, and before I go to client and tell them it’s their OMS causing the issue, I need to feel a little more confident that I’m on the right track. 
    Any help or advice would be very greatly appreciated.  And thanks for taking the time to read through my long-winded explanation of the problem.
    Set-up details:
    ColdFusion Version: 9,0,0,251028  Standard 
    Operating System: Windows Server 2008 
    Java Version: 1.6.0_14 
    Java VM Name: Java HotSpot(TM) 64-Bit Server VM 
    Java VM Version: 14.0-b16 
    Thanks,
    Laurie

    Hi Laurie,
    Not aware of custom tag called CFX_JSOCKET. I guess the process you described very well is consuming a resource then you are getting a problem. Trick is what parameter to adjust. Perhaps you are running out of one the threads in CFadmin > Server Settings > Request Tuning.
    I expect if you enable CF Metrics logging where you can log the threads and other resources then you can find out which parameter needs adjusting. Let me know if you want some details on enabling CF Metrics. Perhaps others will have much better idea than me and help without the overhead of logging.
    The other interesting thing is you are using CF9.0.0. Do you have some reasons for not being on updater1 CF9.0.1?
    HTH, Carl.
    PS I posted before however seems to have gone, just hope does not come back and then I have posted twice.

  • Finder crashes when connecting to server (10.9.4)

    I have been having an issue with my Mac Mini the last few days when it tries to connect to my local server.
    The first few times I can access the server normally through Finder, but after a few goes Finder freezes (spinning beach ball on finder - other apps work ok) up completely and needs to be restarted. Once it has restarted and I re-open Finder, it freezes up again completely until I restart my computer. The same applies when I try to access the server from other apps (eg. when adding a photo from the server to something in Chrome).
    I have reset PRAM, verified/repaired disk, run CCleaner.
    Any solutions to this issue?
    Mac Mini mid-2011
    Processor  2.5 GHz Intel Core i5
    Memory  4 GB 1333 MHz DDR3
    Running 10.9.4

    Sorry...
    tcp:
        61269 packets sent
            14501 data packets (5423429 bytes)
            457 data packets (298568 bytes) retransmitted
            0 resends initiated by MTU discovery
            34229 ack-only packets (284 delayed)
            0 URG only packets
            0 window probe packets
            8915 window update packets
            3181 control packets
            0 data packets sent after flow control
            0 checksummed in software
                0 segments (0 bytes) over IPv4
                0 segments (0 bytes) over IPv6
        66665 packets received
            15538 acks (for 5408457 bytes)
            1286 duplicate acks
            0 acks for unsent data
            46049 packets (49418889 bytes) received in-sequence
            233 completely duplicate packets (175429 bytes)
            0 old duplicate packets
            1 packet with some dup. data (996 bytes duped)
            6329 out-of-order packets (8815198 bytes)
            0 packets (0 bytes) of data after window
            0 window probes
            70 window update packets
            166 packets received after close
            0 bad resets
            0 discarded for bad checksums
            0 checksummed in software
                0 segments (0 bytes) over IPv4
                0 segments (0 bytes) over IPv6
            0 discarded for bad header offset fields
            0 discarded because packet too short
        1604 connection requests
        50 connection accepts
        0 bad connection attempts
        0 listen queue overflows
        1622 connections established (including accepts)
        1613 connections closed (including 48 drops)
            37 connections updated cached RTT on close
            37 connections updated cached RTT variance on close
            15 connections updated cached ssthresh on close
        0 embryonic connections dropped
        15554 segments updated rtt (of 13699 attempts)
        544 retransmit timeouts
            20 connections dropped by rexmit timeout
            0 connections dropped after retransmitting FIN
        2 persist timeouts
            0 connections dropped by persist timeout
        0 keepalive timeouts
            0 keepalive probes sent
            0 connections dropped by keepalive
        2887 correct ACK header predictions
        40214 correct data packet header predictions
        79 SACK recovery episodes
        43 segment rexmits in SACK recovery episodes
        39243 byte rexmits in SACK recovery episodes
        256 SACK options (SACK blocks) received
        6226 SACK options (SACK blocks) sent
        0 SACK scoreboard overflow
        0 LRO coalesced packets
            0 times LRO flow table was full
            0 collisions in LRO flow table
            0 times LRO coalesced 2 packets
            0 times LRO coalesced 3 or 4 packets
            0 times LRO coalesced 5 or more packets
        3 limited transmits done
        106 early retransmits done
        20 times cumulative ack advanced along with SACK
    udp:
        6116 datagrams received
            0 with incomplete header
            0 with bad data length field
            0 with bad checksum
            0 with no checksum
            0 checksummed in software
                0 datagrams (0 bytes) over IPv4
                0 datagrams (0 bytes) over IPv6
            41 dropped due to no socket
            2230 broadcast/multicast datagrams undelivered
            0 times multicast source filter matched
            0 dropped due to full socket buffers
            0 not for hashed pcb
            3845 delivered
        994 datagrams output
            69 checksummed in software
                0 datagrams (0 bytes) over IPv4
                69 datagrams (11318 bytes) over IPv6
    ip:
        72011 total packets received
            0 bad header checksums
            0 headers (0 bytes) checksummed in software
            0 with size smaller than minimum
            0 with data size < data length
            3522 with data size > data length
                0 packets forced to software checksum
            0 with ip length > max ip packet size
            0 with header length < data size
            0 with data length < header length
            0 with bad options
            0 with incorrect version number
            0 fragments received
                0 dropped (dup or out of space)
                0 dropped after timeout
                0 reassembled ok
            71997 packets for this host
            14 packets for unknown/unsupported protocol
            0 packets forwarded (0 packets fast forwarded)
            0 packets not forwardable
            0 packets received for unknown multicast group
            0 redirects sent
        62678 packets sent from this host
            0 packets sent with fabricated ip header
            0 output packets dropped due to no bufs, etc.
            0 output packets discarded due to no route
            0 output datagrams fragmented
            0 fragments created
            0 datagrams that can't be fragmented
            0 tunneling packets that can't find gif
            0 datagrams with bad address in header
            0 packets dropped due to no bufs for control data
            71 headers (1428 bytes) checksummed in software
    icmp:
        41 calls to icmp_error
        0 errors not generated 'cuz old message was icmp
        Output histogram:
            destination unreachable: 41
        0 messages with bad code fields
        0 messages < minimum length
        0 bad checksums
        0 messages with bad length
        0 multicast echo requests ignored
        0 multicast timestamp requests ignored
        Input histogram:
            destination unreachable: 14
        0 message responses generated
        ICMP address mask responses are disabled
    igmp:
        0 messages received
        0 messages received with too few bytes
        0 messages received with wrong TTL
        0 messages received with bad checksum
        0 V1/V2 membership queries received
        0 V3 membership queries received
        0 membership queries received with invalid field(s)
        0 general queries received
        0 group queries received
        0 group-source queries received
        0 group-source queries dropped
        0 membership reports received
        0 membership reports received with invalid field(s)
        0 membership reports received for groups to which we belong
        0 V3 reports received without Router Alert
        2 membership reports sent
    ipsec:
        0 inbound packets processed successfully
        0 inbound packets violated process security policy
        0 inbound packets with no SA available
        0 invalid inbound packets
        0 inbound packets failed due to insufficient memory
        0 inbound packets failed getting SPI
        0 inbound packets failed on AH replay check
        0 inbound packets failed on ESP replay check
        0 inbound packets considered authentic
        0 inbound packets failed on authentication
        0 outbound packets processed successfully
        0 outbound packets violated process security policy
        0 outbound packets with no SA available
        0 invalid outbound packets
        0 outbound packets failed due to insufficient memory
        0 outbound packets with no route
    arp:
        5 ARP requests sent
        9 ARP replies sent
        0 ARP announcements sent
        98 ARP requests received
        6 ARP replies received
        104 total ARP packets received
        0 ARP conflict probes sent
        0 invalid ARP resolve requests
        0 total packets dropped due to lack of memory
        3 total packets dropped due to no ARP entry
        0 total packets dropped during ARP entry removal
        12 ARP entries timed out
        0 Duplicate IPs seen
    ip6:
        793 total packets received
            0 with size smaller than minimum
            0 with data size < data length
            0 with data size > data length
                0 packets forced to software checksum
            0 with bad options
            0 with incorrect version number
            0 fragments received
                0 dropped (dup or out of space)
                0 dropped after timeout
                0 exceeded limit
                0 reassembled ok
            784 packets for this host
            0 packets forwarded
            0 packets not forwardable
            0 redirects sent
            0 multicast packets which we don't join
            0 packets whose headers are not continuous
            0 tunneling packets that can't find gif
            0 packets discarded due to too may headers
            0 forward cache hit
            0 forward cache miss
            0 packets dropped due to no bufs for control data
        126 packets sent from this host
            0 packets sent with fabricated ip header
            0 output packets dropped due to no bufs, etc.
            4145 output packets discarded due to no route
            0 output datagrams fragmented
            0 fragments created
            0 datagrams that can't be fragmented
            0 packets that violated scope rules
        Input histogram:
            TCP: 22
            UDP: 762
            ICMP6: 9
        Mbuf statistics:
            507 one mbuf
            two or more mbuf:
                lo0= 69
            217 one ext mbuf
            0 two or more ext mbuf
            0 failures of source address selection
    icmp6:
        0 calls to icmp_error
        0 errors not generated because old message was icmp error or so
        0 errors not generated because rate limitation
        Output histogram:
            router solicitation: 4
            neighbor solicitation: 4
            neighbor advertisement: 4
            MLDv2 listener report: 7
        0 messages with bad code fields
        0 messages < minimum length
        0 bad checksums
        0 messages with bad length
        Input histogram:
            neighbor solicitation: 3
            neighbor advertisement: 6
        Histogram of error messages to be generated:
            0 no route
            0 administratively prohibited
            0 beyond scope
            0 address unreachable
            0 port unreachable
            0 packet too big
            0 time exceed transit
            0 time exceed reassembly
            0 erroneous header field
            0 unrecognized next header
            0 unrecognized option
            0 redirect
            0 unknown
        0 message responses generated
        0 messages with too many ND options
        0 messages with bad ND options
        0 bad neighbor solicitation messages
        3 bad neighbor advertisement messages
        0 bad router solicitation messages
        0 bad router advertisement messages
        0 bad redirect messages
        0 path MTU changes
    ipsec6:
        0 inbound packets processed successfully
        0 inbound packets violated process security policy
        0 inbound packets with no SA available
        0 invalid inbound packets
        0 inbound packets failed due to insufficient memory
        0 inbound packets failed getting SPI
        0 inbound packets failed on AH replay check
        0 inbound packets failed on ESP replay check
        0 inbound packets considered authentic
        0 inbound packets failed on authentication
        0 outbound packets processed successfully
        0 outbound packets violated process security policy
        0 outbound packets with no SA available
        0 invalid outbound packets
        0 outbound packets failed due to insufficient memory
        0 outbound packets with no route
    rip6:
        0 messages received
        0 checksum calcurations on inbound
        0 messages with bad checksum
        0 messages dropped due to no socket
        0 multicast messages dropped due to no socket
        0 messages dropped due to full socket buffers
        0 delivered
        0 datagrams output
    pfkey:
        0 requests sent to userland
        0 bytes sent to userland
        0 messages with invalid length field
        0 messages with invalid version field
        0 messages with invalid message type field
        0 messages too short
        0 messages with memory allocation failure
        0 messages with duplicate extension
        0 messages with invalid extension type
        0 messages with invalid sa type
        0 messages with invalid address extension
        0 requests sent from userland
        0 bytes sent from userland
        0 messages toward single socket
        0 messages toward all sockets
        0 messages toward registered sockets
        0 messages with memory allocation failure

  • Creat too many instance when writing an oracle database

    Hi
    I want to write Oracle database with database toolkits;
    but..i found there are too many instance or called session(exceed the upper limit) created when the program running .  that makes the Orace server stop responding
    Is there anything  i need to modify?
    Attachments:
    Oracle DB.vi ‏36 KB

    Frankly I have never seen this problem, but then I make a point of never using the database connectivity toolkit. Assuming a Windows platform, Windows implements something called connection pooling so when you "close" a connection the OS inserts it into a pool so If you ask for another connection it doesn't actually open a new one it just gives you back a reference to one of the ones you "closed" before.
    What OS are you running on?
    What version of Oracle?
    Is the instance of Oracle local or on another computer?
    How are you communicating with Oracle (odbc, oledb, etc)?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Finder error -36 when connecting to server - smbclient in terminal works

    Finder > Go > Connect to Server
    When ever I need to connect to a smb server using Finder, I get the constant error -36.
    In console :
    mount_smbfs: session setup phase failed: syserr = Socket is not connected
    mount_smbfs: could not login to server EXIT15: syserr = Socket is not connected
    mount_smbfs: 2 failures to open smb device: syserr = Resource busy
    mount_smbfs: session setup phase failed: syserr = Authentication error
    mount_smbfs: error from NetrShareEnum call: exception = 382312500
    I can sometimes select the share to mount, and it tries for a few seconds, never succeeds.
    10.4.10, but this was also case previously. We have every single Mac with this symptom so it is 7 work units at the moment, a Mac Pro, MacBook Pros, MacBook, Mac mini.
    Wired, wireless, and even VPN, no matter how the mac is connected to the net.
    Every non-Mac server at work tested gives this error when trying to connect to their shares.
    smbclient in terminal works.
    http://www.macwindows.com/tiger.html and Apple kbase article 301580 suggestions for nsmb.conf didn't make any difference. (the nsmb noauth being a very poor choice if it would work)
    smb.conf and nsmb.conf any security settings don't make any difference.
    I have working details for connection, so share, ip and dns name, username and password for connection work.
    Connecting from Terminal works.
    Connecting from any Windows or Linux virtual machine on Fusion on these same Macs work too.
    I have changed the workgroup to the correct one in Directory Access.
    I have tried all connection syntaxes suggested in http://www.macwindows.com/tiger.html - none of them still work in Finder, always identical results.
    smbclient //dns-name-or-ip/sharename -W workgroup -U username
    is the only viable workaround at the moment.
    Domain=[dnsnameofwhereconnected] OS=[EMC-SNAS:T5.4.21.400] Server=[NT1]
    is what smbclient gives for server details when its connected.
    As smb works from command line, it's not smb itself that is affected. Just Finder.
    I don't have access to edit any settings on the servers that we need to connect to. Only sharename and password that work for connection, but don't allow any editing on the server's settings.
    Ideas? This should work in Finder.
    Smbclient and Fusion area already somewhat workarounds, so I'm not looking for any third party software for dealing with this.
    I spent way too much time with AppleCare on this, and all I got was 90 minutes wasted.
    Ideas anyone???

    I think I have found what caused it. Not solved, but at least this seems so far the most likely cause:
    The share name contains hyphen.
    http://docs.info.apple.com/article.html?artnum=106471 Mac OS X 10.1 or later: How to Connect to Windows File Sharing (SMB) : Date Modified: August 01, 2007
    “6. You cannot connect to a share with a name that contains a hyphen. Resolve the issue by giving the share a name that does not contain a hyphen.”
    smbclient in Terminal is not limited to this "feature" of Finder of Mac OS X 10.1 that was not fixed or recoded to solve it or modify it since adding smb in it in 2001.
    It's not possible to test this changing the share name to one that does not contain a hyphen, nor to have one added in this server.
    For users that won't have Terminal access, the solution are .. remote desktop with admin user, have admin user come to mount the share in location, or use virtualization software and with it anything that works.
    Probably too optimistic to think the smb parts would have been rewritten for 10.5.

  • Problem when connecting sql server 2005 using SQL developer

    Hi,
    I installed Sql developer and I am trying to connect sql server 2005 using windows authentication. I had previously the SSO folder problem saying the path is missing in java.library.path. I copied the SSO folder into Sqldeveloper directory. I changed the settings under computer management->services and applications->sql server configuration manager->sql server 2005 network configuration ->protocols for sqlexpress->I enabled TCP/IP.
    Now I am getting an error saying "Failure-can not open user default database.Login Failed. Login failed for user ...".
    I am able to connect thru ODBC driver using windows authentication.
    Any help on this is highly appreciated.
    Thanks in advance,
    Lakshmi

    Hi Martin,
    Your solution has solved my problem too. Thanks for posting these workaround fixes :-)
    However, there seem to be a problem with datetime fields. The query:
    select getdate()
    returns something like: oracle.datetimestamp.@1aed4
    Is there a way to get around with this? Otherwise, using SQL Developer as a client for SQL Server doesn't serve the right purpose when we cannot access simple date fields :-)

  • I am getting error message too many redirects when i try to open apps store in iphone 5 ios 6.1 pls help

    Too many redirects error when trying to open apps store in iphone 5 ios 6.1

    Error 2, 4 (or -4), 6, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or photos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • Permissions Trouble when Connected to Server

    Setup: iMac G3 running Server 10.3.9 (file sharing services only); Powerbook G4 running Client 10.3.9; connection to server via Airport.
    Problem: When logged on to a sharepoint on the server using my user profile name and password, I have read only permissions despite the fact that the server is configured to include my user profile in a group with full read-write permissions.
    I have created a new alternate user profile on my Powerbook and from there have successfully logged on to the server using my original user profile name and password with full read-write priveledges.
    Also, I do not have this problem when logging on from another client machine in the office.
    Question: Are there steps I can take to restore my original user profile on my Powerbook so that I may successfully log in to my server with full read-write priveledges?
    Thank you for your attention.
    Sincerely,
    Mark
    P.S. I had started a thread under this subject heading within the discussion group "Mac OS X 10.3 > Using Mac OS X," before being referred to this discussion group. You may want to review that thread.

    I gather from the relative silence that the solution to my problem is not known.
    Let me pose a new question. Since I am able to create a new user profile on my Powerbook G4 and log on to the server as "Mark" with full read-write priviledges, is there a simple way to move all of my files, preferences and mail account information from one profile to another? If so, would I need to migrate the data twice -- once to the new alternate profile, and a second time to a newly recreated "Mark" profile?
    Of course I'm still open to a simpler solution if one is known.
    Sincerely,
    Mark

  • Consistenly "too many arguments" when OCR any scanned PDF file in Adobe Acrobat 9.2

    Hi,
    plz see attached file for a 2 page sample. I have purchased AA9 to get better OCR (clearscan). Before, we were using AA6, which sometimes crashed, but not consistently.
    However, AA9 (9.2.0) now always crashes with the same error "too many arguments" after finishing of the OCR. All pages turn completely white. Saving them causes the contents to be gone permanently and even happened with batch OCR.
    OCRing on http://www.cvisiontech.com/online-conversion/general/main.html works fine, but that product we have not yet purchased.
    Does anyone have an idea what might cause this and how to resolve it?
    The PDF-s have been generated by HP Digital Sender and Canon scanner/printer MF9170. Both types of scans give the same result.
    Regards,
    Guido

    There is no virus protection or spy protection on this PC. It runs the following:
    Windows Server 2003 x64 SP2
    The file gives the error both on my local disk and on my (Samba) network disk.
    As far as tested all scans give the same error at the end of the scanning process. Might it be related to x64 handling from a x32 program?

  • ICloud always finds error when connecting to server

    When trying to open ICloud on my PC regarding my IPhone, a message comes up stating that an error occured when connecting to the server. I start fresh and I receive the same error. Any suggestions?

    This is strange as i am not able to login in to icloud with my [email protected] but i am able to login with [email protected] Which is the same to this account

  • Is anyone else getting a "554 too many recipients" when sending to groups?

    I am trying to work from home, and a current project has a large number of people that need to stay informed.  When I try to do a "reply all" to the group I get a "554 Too many recipients" error message back really quickly.  Seems I can only send to 49 people at once...needless to say this casues problems as the group (so far) is 74 people...
    Anyone got a work arround other that splitting up the group into two messages (what a pain)
    Supposedly the WebMail interface will let me send to 100 at once, but I can't cut-n-paste the addresses from Outlook to Webmail without some MAJOR editing.
    Suggestions PLEASE

    Hey Bob -- You are correct that there is a limit to how many outgoing recipients an email can be sent to, but it is 100 unique addresses.  It sounds like you may be having an issue with your Outlook program; possibly the way your address book is configured if you have more than one address saved for each person you're trying to send the message to.  The address book would be a good place to check first and then looking into troubleshooting the Outlook program would be your next step.  Thanks!
    Karl
    Verizon Support
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan.

Maybe you are looking for