Portugal Skype-to-Go dial-in access #

Skype will not allow me to add my Portugal mobile number (it demands that my number is a USA number).  Without being able to enter this, I'm unable to find out what the number in Portugal is that I need to dial to get onto the Skype network.  Can anybody help me with this?  Thanks!

Could you please send me your portuguese mobile number in a private message and we can look into this. Thanks.

Similar Messages

  • IC WebClient Dial-Up access

    We will be implementing CRM 4.0 in the near future. For some of our users, who may be on the road, dial-up access may be the only connectivity option. Has anyone used the IC Webclient in this capacity? Thanks

    Chris,
    IC Webclient is a completely different product than CRM4.0. The IC stands for Interaction Center, which indicates that it is targeted at call/interaction handling.
    CRM4.0 has a web interface. So, whether you are in the office or on the road (again), you just new web access back to your company and a browser. Depending on your dialup access (minimum 56Kbps), it should work OK. However, keep in mind that such dailup access usually has large latency times!

  • I just upgraded to Firefox 5. How can I get a copy of Firefox 4. The new version does not work with Skype's auto dialer.

    How can I get a copy of the previous version of Firefox? The latest version (5) does not support Skype's auto dialer. I use this tool to be more productive.

    Due to security vulnerabilities, rolling back to Firefox 4.0.1 is not recommended.
    If Firefox disabled some add-ons (especially extensions), it likely is because they include a list of compatible Firefox versions and haven't yet been updated for Firefox 5. If they worked on Firefox 4, there is a good chance they will work on Firefox 5.
    You can force Firefox to ''ignore'' add-on version restrictions by (what else) installing an add-on. Then you can test whether the add-ons important to you actually work in Firefox 5.
    [https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/ Add-on Compatibility Reporter :: Add-ons for Firefox]
    After you install this add-on and restart Firefox, there will still be a message that "--- is incompatible with Firefox 5.0" but the add-on will be enabled and a Disable button will appear for that entry.
    Please report back on your results.

  • DSL in the city, do we have dial up access numbers in upstate?

    I have DSL in the city, do we have dial up access numbers in upstate?
    Anyone know who to call for that number?
    Thanks
    Ñin

    An Air card that someone is talking about would have to be something along the lines of 3G or 4G USB adapters. These are of course, Wireless data plans that use the cell phone towers so you'd need to make sure that signal is good out where you are anyways to even get that. Other than that, it's slow as heck satellite or trying to convince Verizon to set up pole-mounted DSLAMs somewhere within 2 miles of you for DSL. ISDN could be an option though I don't think Verizon installs those too much any more, and they would only give 128k of bandwidth anyways, despite lower latency.
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • Dial-up access on 2851

    disregard conversation

    so apple no longer makes dial up modems?
    They withdrew the USB modem a year or two back, which is extremely unhelpful as I don't think any modern Macs have them built-in. Even though I have cable broadband, I have some webspace with another provider which can only be accessed by dialling in (so they can charge) and though I do have the modem there must be lots of other people in this situation, quite apart from those who have only dial-up access.

  • Dial up access?

    how can I get dial up access? apparently, apple no longer sells their external 56k modems anymore, and I'm in a bind since DSL is not available in my parents summer home!

    so apple no longer makes dial up modems?
    They withdrew the USB modem a year or two back, which is extremely unhelpful as I don't think any modern Macs have them built-in. Even though I have cable broadband, I have some webspace with another provider which can only be accessed by dialling in (so they can charge) and though I do have the modem there must be lots of other people in this situation, quite apart from those who have only dial-up access.

  • When using Zoho CRM- by default they use Skype as the "dialer". They said the browser can be configured to use Google Voice as the default dialer. Please help

    When using Zoho CRM- by default it uses Skype as the "dialer". They said the browser can be configured to use Google Voice as the default dialer. Please help by telling me how to make Google Voice the default dialer instead of Skype. Thanks

    Try the following changes to the JS file
    Lines 103 and 104 change the values
    this.showDelay = 100; // was 250
    this.hideDelay = 200; // was 600
    Comment out line 286
    Spry.Widget.MenuBar.prototype.bubbledTextEvent = function()
    //    return Spry.is.safari && (event.target == event.relatedTarget.parentNode || (event.eventPhase == 3 && event.target.parentNode == event.relatedTarget));
    Comment out line 366 and add new lines 366 and 367
    var self = this;
    this.addEventListener(listitem, 'click', function(e){self.Click(listitem, e);}, false);
    this.addEventListener(listitem, 'click', function(e){self.mouseOver(listitem, e);}, false);
    //   this.addEventListener(listitem, 'mouseover', function(e){self.mouseOver(listitem, e);}, false);
    this.addEventListener(listitem, 'mouseout', function(e){if (self.enableKeyboardNavigation) self.clearSelection(); self.mouseOut(listitem, e);}, false);
    I have not tested the above changes ontouch screens; they do seem to work Ok on desktops.
    NOTE: Line numbers could be different because of the difference in our versions.

  • Help Needed Creating AppleScript for Dial Up Access and Updates

    Hello,
    Due to my location I can only access the internet via Dial Up. I would like to create a script that wakes up my Mini early in the AM, dials my ISP and checks to see if there are any Apple Updates. I'd like to do this at night so my family doesn't have to compete with updates when they are using the computer.
    I've done the Apple Scripting tutorials and have a feel how to do the basics. But I cannot find any information on how to access the USB Modem (US Robotics), get it to dial, access the "Check for Updates" page, download, install and then disconnect.
    Can anyone point me to a functional script that will do this or tell me where I can find the modem related scripting commands?
    Thanks

    1). Does your script both get and install updates if they exist ? If not what should be added to accomplish that?
    If you use man softwareupdate to look at the command line options for softwareupdate you'll find:
    -i | --install
    Each update specified by args is downloaded and unarchived,
    and also installed. The install flag requires root. args
    can be one of the following:
    item ... One or more update names.
    -a | --all All appropriate updates.
    -r | --req All required updates.
    So '-i' tells softwareupdate to install the updates, and '-a' tells it to install all available updates, as opposed to a specific update, or 'required' ones.
    2). Can you suggest an addition to the script that will disconnect the dial up modem and then shut down our Mac Mini?
    That's going to be harder because, as written, the script performs the softwareupdate in the background. It does that so that you don't run into timeout issues (by default AppleScript will timeout after a certain period, canceling the script in progress). Since it's not clear how long the updates will take to download and install it isn't possible to predict what the appropriate timeout should be.
    The easiest way to disconnect would be to just configure the dialup connection to disconnect after a certain period of idleness (System Preferences -> Network -> Modem -> Advanced -> PPP -> Options or some such). If that doesn't suffice let me know and I'll craft up a revised script.

  • Dial-In access to VRF Lite (MPLS VPN)

    Hi,
    I'm trying to implement a solution, that gives opportunity to dial-in to some specific customers VPN (VRF Lite)
    Configuration of NAS is done using cisco.com guide and seems OK. NAS is using RADIUS to authenticate users, and if authenticated, RADIUS sends a specific users virtual-profile configuration to NAS. So far everything seems OK. I can dial-in, succesfuly authenticate against RADIUS and download the virtual-profile configration (DEBUG is pasted below).
    BUT, even there is a command "virtual-profile aaa", and RADIUS sends all info, Virtual-Access interface isn't created or it is created without any configuration.
    Maybe this is happening because I'm using dialer-profile ? Some cisco documentation says that if there are dialer-profiles configured, virtual-profile configuration cann't be downloaded from AAA ???
    Here is debug, You can see RADIUS to NAS communication:
    Aug 24 07:59:59: %LINK-3-UPDOWN: Interface Serial2/0:26, changed state to up
    Aug 24 08:00:00: RADIUS(000000A1): Storing nasport 20026 in rad_db
    Aug 24 08:00:00: RADIUS(000000A1): Config NAS IP: 0.0.0.0
    Aug 24 08:00:00: RADIUS/ENCODE(000000A1): acct_session_id: 247
    Aug 24 08:00:00: RADIUS(000000A1): sending
    Aug 24 08:00:00: RADIUS/ENCODE: Best Local IP-Address xxx.xxx.xxx.xxx for Radius-Server xxx.xxx.xxx.xxx
    Aug 24 08:00:00: RADIUS(000000A1): Send Access-Request to xxx.xxx.xxx.xxx:1645 id 21646/40, len 113
    Aug 24 08:00:00: RADIUS: authenticator C9 98 61 51 0F FF 0F C8 - FA A2 3E C1 5E 80 13 0E
    Aug 24 08:00:00: RADIUS: Framed-Protocol [7] 6 PPP [1]
    Aug 24 08:00:00: RADIUS: User-Name [1] 6 "vrft"
    Aug 24 08:00:00: RADIUS: CHAP-Password [3] 19 *
    Aug 24 08:00:00: RADIUS: Vendor, Cisco [26] 20
    Aug 24 08:00:00: RADIUS: cisco-nas-port [2] 14 "Serial2/0:26"
    Aug 24 08:00:00: RADIUS: NAS-Port [5] 6 20026
    Aug 24 08:00:00: RADIUS: NAS-Port-Type [61] 6 ISDN [2]
    Aug 24 08:00:00: RADIUS: Calling-Station-Id [31] 9 "xxxxxxx"
    Aug 24 08:00:00: RADIUS: Called-Station-Id [30] 9 "xxxxxxx"
    Aug 24 08:00:00: RADIUS: Service-Type [6] 6 Framed [2]
    Aug 24 08:00:00: RADIUS: NAS-IP-Address [4] 6 xxx.xxx.xxx.xxx
    Aug 24 08:00:00: RADIUS: Received from id 21646/40 xxx.xxx.xxx.xxx:1645, Access-Accept, len 277
    Aug 24 08:00:00: RADIUS: authenticator 8D E7 52 2A 4B 72 88 9E - B8 85 38 CF 70 4A B7 79
    Aug 24 08:00:00: RADIUS: Service-Type [6] 6 Framed [2]
    Aug 24 08:00:00: RADIUS: Framed-Protocol [7] 6 PPP [1]
    Aug 24 08:00:00: RADIUS: Framed-IP-Address [8] 6 10.10.8.5
    Aug 24 08:00:00: RADIUS: Framed-IP-Netmask [9] 6 255.255.255.240
    Aug 24 08:00:00: RADIUS: Framed-Compression [13] 6 VJ TCP/IP Header Compressi[1]
    Aug 24 08:00:00: RADIUS: Vendor, Cisco [26] 54
    Aug 24 08:00:00: RADIUS: Cisco AVpair [1] 48 "lcp:interface-config#1= ip vrf forwarding test"
    Aug 24 08:00:00: RADIUS: Vendor, Cisco [26] 68
    Aug 24 08:00:00: RADIUS: Cisco AVpair [1] 62 "lcp:interface-config#2= ip address 10.10.8.1 255.255.255.240"
    Aug 24 08:00:00: RADIUS: Vendor, Cisco [26] 50
    Aug 24 08:00:00: RADIUS: Cisco AVpair [1] 44 "lcp:interface-config#3= description horray"
    Aug 24 08:00:00: RADIUS: Vendor, Cisco [26] 49
    Aug 24 08:00:00: RADIUS: Cisco AVpair [1] 43 "lcp:interface-config#4= encapsulation ppp"
    Aug 24 08:00:00: RADIUS: Framed-Routing [10] 6 0
    Aug 24 08:00:00: RADIUS(000000A1): Received from id 21646/40
    Aug 24 08:00:00: %ISDN-6-CONNECT: Interface Serial2/0:26 is now connected to xxxxxxx vrft
    Aug 24 08:00:00: %LINK-3-UPDOWN: Interface Serial2/0:26, changed state to down
    Please let me know if any other information is required.

    Besides, as I see, virtual-access interface's description is as configured on RADIUS, but all other configuration is from virtual-template. Why? Even if there are no overlapping configuration strings in Vtemplate and on AAA (like ip address etc), configuration string received from RADIUS isn't getting added to virtual-access interface configuration.

  • Sync with laptop for dial up access

    I have a Palm OS 755P with Alltel.  I was told that I need to have 700P drivers in order for me to sync with my laptop for internet access.  I have had success in the past but I was told my drivers were bad and that they needed to be reinstalled.  I tried the 755P driver but it still doesn't work.  I can't find where to find the 700p drivers to install.  Any help would be appreciated.
    Post relates to: Treo 700p (Alltel)

    I have no personal experience with tethering. The following support article is the closest match I could find to your question. Does it help?
    Setting up a USB Dial Up Networking (DUN) connection for a Treo 700p & 755p smartphone
    http://kb.palm.com/wps/portal/kb/na/treo/755p/alltel/solutions/article/42866_en.html

  • Dial-up access # w/o monthly fee?

    I've hung onto my old dial-up account all these years just in case I ever get somewhere wihtout a high-speed connection ... or for those times when the Cable modem goes on the blink and I have to get online. These occasions are fewer and far between, and I'm looking to find a way to stop paying $19.95/month but still have an access number I can use on an as-needed basis for those few times when I need one.
    Is there any reliable ISP that offers an access number on an as-needed basis? Or do they all charge a monthly fee?

    In the UK you can get a free dial up account however you pay standard call charges for the duration of your connection.
    But it is cheaper to get a usb 3g/hdspa modem for a backup connection faster and cheaper than dial up.

  • Apple iphone4 is locked and will not let me dial or access contacts or recents, etc, can anyone help here?

    I can't get my Apple iphone 4 to allow me to access anything (Phone functions only)after it comes up. No dialing, favorites or contacts, etc. What to do to fix it?

    What is "locked", the phone or the laptop? When you say locked, what symptoms are you seeing that makes you say it is locked?
    Without a working sleep/wake button, then you cannot perform the basic user troubleshooting steps. Your only choice at this point is to let the phone's battery die and see if you can get it reset by then plugging it into the charger.

  • Trying to set up Skype Premium, but can't access F...

    Hi, 
    I'm getting just a little frustrated trying to get this sorted. 
    I've tried to buy Skype Premium, only to get to the card verification page and for it to say access denied. I've tried this on two computers now and it's the same. But when I look in my billings area of my account it says that 3 purchases for Skype Premium is pending. 
    I've tried to find the support to rectify this and get two out of the three subscriptions cancelled only to be sent round in circle as your 'Continue support request' button doesn't appear when using the support pages. 
    Please can someone get back to me ASAP on this. 
    Thanks
    Solved!
    Go to Solution.

    as you are still having problems contacting support, you can also just send an email to [email protected]  Just provide them as much relevant details possible, and use your registered email address when you contact them through that email address.
    CONTACT SKYPE CUSTOMER SERVICE   |  HOW TO RECORD SKYPE VIDEO CALLS  | HOW TO HANDLE SUPICIOUS CALLS AND MESSAGES   |  WINDOWS PROBLEMS TROUBLESHOOTING   |  SKYPE DOWNLOAD LINKS  
    MORE TIPS, TRICKS AND UPDATES AT
    skypefordummies.blogspot.com

  • Cabbit use skype credit to dial landline and mobile

    I have been using Skype for over 10 years, and work internationally, so it really comes in handy for me , escept when I have poor WIFI,,,, I use it on desktop and my Iphone,,,, This week my account was suspended for suspicious activity and I was forced to submit information to reactivate and change my password,,, now that I went through all that, I still cannot dial landline and mobile phones although I have 35$ credit showing on my account,,,I have not been told why the account was suspended in the frst place,,, and now I am travelling and cannot even use it ,,,, I am very dissappointed at the process and difficulty to contact anyone who can reactivate my service... Any other service that suspects suspicious activity would simply inform me by my known email,, and resent verification link to the email to initiate a reset,,, but instead,, microsoft goes through an extended automated process, while the customer is forced to sit and wait,, then doesnt even know in the end why the problem started in the first place,,, I am slowly migrating away from microsoft,, and this is just another reason why,,,,

    You should be able to change payment method to Skype Credit.
    Try this first:
    1) Go https://secure.skype.com/account/call-phones/packa​ges
    2) Open your subscription Settings
    3) Click on Change payment method
    4) Add another payment method -> Skype Credit
    Once you have done this it should look something like this:
    If these steps don't work for you then please contact customer service for further troubleshooting: https://support.skype.com/en/faq/FA1170/How-can-I-​contact-Skype-Customer-Service
    Andre
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • Skype crashes on call. Access violation

    Whenever I call with skype, at random times It woll crash and give me the error Access Violation at adrress 685c78a0. Write at Address 685c78a0. Admin mode on the program seems to work. Although not even an uninstall and reinstall is working. 

    FYI...
    We have been investigating the crash with Skype. If you are interested in helping verify the fix by testing a beta for us, please send an email to '[email protected]' with the subject line 'Hear betas', containing the following:
    - Full name
    - desired contact email address (if different from email addr used for email)
    - System Profile report (zipped up *.spx file)
    thanks!
    dEVoN
    Prosoft Engineering

Maybe you are looking for

  • How to connect to MS Exchange Server?

    Does anyone know how to connect to a local MS Exchange Server? I know the server name and the directory hierarchy path name for the server. How do I connect?

  • Export a only a Movie Clip

    I am building an interactive website as my final project for my Webmastering class and need to know one thing. First I'll give you my setup. I have four Movie Clips in four seperate layers on my main timeline. I want to export one of those Movie Clip

  • Bug on dads/schema mapping in oracle 11g

    This is a very annoyng problem i had with the new 11g version. i have a lot of users in the db, they are all copies of a master schema but they are mapped differently in dads.conf example: <Location /sam> PlsqlDatabaseUsername wsam <Location /jo> Pls

  • Status 29 when creating and distributing IDocs

    Hi all! I try to create IDocs for distribution via MASTER_IDOC_DISTRIBUTE without providing a specific receiver. The distribution model contains for my message type a distrubution and generated partner agreements. In one example this is a bapi for a

  • Datagrid disappering on clicking while using popup button

    Hi, I have a popup button, which on opening presents a datagrid control. i can scroll through the datagrid. Problem is that if i accidentally click on the datagrid, the datagrid disappears back under the pop up button. Is there a way i can have it st