Not able to make wall posts in Facebook

This has been an ongoing problem and seeing if it's global.
Anybody else having this issue? I was just wanting to wish somebody a happy birthday but the box doesn't appear to write on anybody's wall. I can only reply to somebody else's post.
works fine in firefox & chrome.
supwitdat?

Hi,
From your Safari menu bar click Safari / Preferences then select the Autofill tab.
Click the Edit button next to: *Other forms*. Delete all Facebook entries, click Done.
And empty the Safari cache. Command + Option + E on your keyboard.
Quit Safari (Command + Q) then relaunch Safari.
If that didn't help, reset Safari from the Safari menu bar. Select the top 7 buttons, click Reset. Try Facebook.
Carolyn

Similar Messages

  • HT1937 I am not able to make a call from my phone.

    Sir,
    this is a very peculiar kind of problem I am facing and it has made my life terrible because not even your service providers are able to help me. I bought my phone from (Maharashtra-Mumbai, India) and my network operator is (airtel). My phone works all fine when am in mumbai but as soon s i leave mumbai I am not able to make an otgoing call from my phone. Everything else works just fine but cannot make an outgoing call. I have tried multiple sim cards of multiple network thinking that i might be a network issue but the problem prevails in all the network. I do not know where to go and what to do. I have an iphone5 and have been an iphone user since last 4 years but not i feel i need to change my brand as no on e is able to help me. I am told to pay (Rs. 19000) if I want a replacement but i am also told that they do not guarantee me if the problem would not prevail in that. I thought able believes in customer relationship management but it seems to be a fallacy. I can name like 10 consumers who use apple product because of my reccomendation and not I myself have no trust in the kind of customer service being provided by your company. Please help me to solve this problem. I presently stay in (Assam-tinsuki, India) and there is no aplle stor or any kind of support out here from your side, I had gone all the way to mumbai thinkng they might help but had found no support. please look into the matter soon and provide me with a handset that works all fine.
    Thanking you
    Ankur Kejriwal
    <Personal Information Edited by Host> .

    My phone works all fine when am in mumbai but as soon s i leave mumbai I am not able to make an otgoing call
    This is entirely a carrier issue.  If your carrier (airtel) doesn't provide service outside of Mumbia, this has nothing to do with your iPhone.
    i feel i need to change my brand
    This is a user-to-user tech support forum, not Apple.  No one here cares at all about your threats.
    NEVER post personal info in this public forum

  • I am not able to make International calls from iPhone 5s

    I got this new iphone 5s as a gift a week days ago, and It was working all great for 2-3 days. But from last 4days i AM not able to make international calls
    Whenever I dial, I can't hear any ring going on and all I can hear is my own voice reverting back to me. Moreoever I am being charged for every call I make. I tried restarting my device, Also by connecting to itunes to find if any Update is needed but it says my iOS7 is recent no updates needed.
    Urgent help needed
    Thanks in advance.

    A call is a call so far as the phone is concerned. Internation or across the street, it doesn't diferentiate between them.
    Contact your carrier.

  • Not able to make any call with my lumia 710

    Not able to make any call with my lumia 710 though other then call everything is working fine. I chacked my SIM in other phone, i there phone i can make calls. Whats wrong with my phone?

    hi
    i am using nokia lumia since last 6 months. i am having aitel connection. till few days back i was able to make phone calls however now phone calls are immediately getting ended.  i m able to send sms, receive calls and use intenel..problem presisits only with receiving call..
    suggest me a way out..plz..

  • Report Builder 3.0 Expression i am not able to make it work on Oracle DB Table

    Hi,
    I am newbie to SSRS Report Builder 3.0 so please be patient with me. I am trying to create a report to query Remedy Ticketing System and it uses Oracle Database installed on a Unix OS...My end objective is to do some calculation on the ticket metrics (i.e.
    percentage of tickets closed within SLA, etc) however i am stuck from the very beginning where i am not able to make my expression work...
    To begin with. my query statement...
    Select Distinct TICKET_NUMBER, Assigned_Group, Category, REGION, TICKET_STATUS,EXCEEDED_SLA, TO_CHAR(date '1970-01-01' + (TICKET_CREATION_DATE/60/60/24), 'DD/MON/YYYY HH:MI:SS AM')TICKET_CREATION_DATE
    from ARADMIN.Request
    where (Assigned_Group like 'HOTS' OR Assigned_Group like 'PAID' OR Category like 'HVD%') and TICKET_CREATION_DATE > (TO_DATE('31/DEC/2014 11:59:59 PM','DD/MON/YYYY HH:MI:SS PM', 'NLS_DATE_LANGUAGE=AMERICAN') - DATE '1970-01-01')*60*60*24
    order by ticket_creation_date
    the data type of the oracle table:
    Here is the Query Result of the DataSet:
    Basically Ticket_Status has values from 0 to 4 although from the screenshot above you only see 2 and 4...
    Ticket_Status 0 - Means Open Ticket
    Ticket_Status 1 - Means Work In Progress Ticket
    Ticket_Status 2 - Means Pending Ticket
    Ticket_Status 3 - Means Awaiting Closure Ticket
    Ticket_Status 4 - Means Closed Ticket
    I created a chart column using the expression below but it did not work...what i mean by it does not work is that the chart column output shows all Ticket_Status total count including 0, 1, 2, 3, & 4 (i.e. total count of tickets are 206)...using
    the expression i was only expecting the total count for Ticket_Status 4  (i.e. 180 tickets) but i guess i am doing something wrong with the expression syntax...
    =Count(Fields!TICKET_STATUS.Value=4) 
    i also used the expression below but it did not work...
    =Count(Fields!TICKET_STATUS.Value="4")
    i converted the Ticket_Status to CHAR on the dataset using the TO_CHAR(Ticket_Status) AS Ticket_Status then i tried the expression below but did not work...
    =Count(Fields!TICKET_STATUS.Value="4")
    i tried again the expression below but did not work'
    =Count(Fields!TICKET_STATUS.Value=4) 
    i cannot proceed to the arithmetic calculation if i cannot filter my dataset with the correct value...again i am a newbie with SSRS & report builder and i would appreciate it very much if you can guide/help me :-)

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • HT1222 I bought used iPhone and on this iPhone I'm not able to make new account  on i Cloud'.  How can I use this iCloud's on used iPhone   Please help me

    I bought used iPhone and on this iPhone I'm not able to make new account  on i Cloud'.  How can I use this iCloud's on used iPhone   Please help me
    When I logging there it told me that maximum no of iCloud's Account already activated on this iPhone.
    Please help me how can I open new iCloud's account on this iPhone
    Regard
    Faiz khan

    Set up the account using a desktop or laptop, then sign
    into that account on your iPhone.
    I am not aware of any method around the restriction once
    the maximum has been created on any individual iPhne.

  • I have a iPhone 5 and I am not able to toggle between the show my caller Id option on and off. How can I do that ??? It always shows greyed out and also because of which I am not able to make outgoing calls. So please help

    I have a iPhone 5 and I am not able to toggle between the show my caller Id option on and off. How can I do that ??? It always shows greyed out and also because of which I am not able to make outgoing calls. So please help

    Not all carriers allow that to be set using preferences in the phone. Contact your carrier.

  • I have garagaband for iOs in my iPhone 4S, I connect my squire iOs guitarr to the iPhone, I select a Guitar Amp at the GB app then I Only can tune the guitar but I m not able to make the guitar ring with the amps. May some one help me?

    I have garagaband for iOs in my iPhone 4S, I connect my Squire iOs guitarr to the iPhone, I select a Guitar Amp at the GB app then I Only can tune the guitar but I m not able to make the guitar ring with the amps. May some one help me?

    You got the new iphone?????   I have same problem.  I transferred audiobooks to device to find no audiobooks on device (despite it being in iTunes as if it was).  Have you found a solution?????   I even tried to change import settings on format transfer but hasn't worked. 

  • I am not able to make outgoing call from my Nokia ...

    Hi,
    Today I observed one weird thing, I am not able to make any outgoing call from my Nokia C7 with Vodafone Sim inside it. After sometime I put some other card and It started working fine. I thought the problem is with Sim hence I put my Vodafone Sim in other phone and It also worked fine.
    Whenever I am trying to make call from Nokia C7 with old Vodafone Sim it gives error "NO ANSWER".
    But I dont understand that why Nokia C7 is not working with Vodafone Sim which was inside it since I purchased the phone.
    Please help as Vodafone customer care has nothing to do as Sim is working fine with other phones.
    Regards,
    Firoz Shaikh

    Have you accidently changed any settings?
    try factory reset the phone and try again
    type in *#7780# and enter 12345 if asked for a code
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • HT1937 Why am I still not able to make a facetime call over my cellular network (sprint) after my iOS 6 update?

    I am not able to make a facetime call after my recent iOS update. It is still saying that I need to connect to wifi when I try to do so. Does not give use cellular option in my general settings.

    You will need to contact Sprint and find out what data plan you need.
    I'm with AT&T with unlimited data in order for me to use cellular data for facetime, I would need to sign up for a different plan.

  • Hi iam using iphone 5s which is locked to EE carrer. I am not able to make a conference call using this phone in india

    Hi iam using iphone 5s which is locked to EE carrer. I am not able to make a conference call using this phone in india

    then call EE if they are your carrier

  • Did not know simple things such as removing hyphen from phone numbers will be so complicated. How do i remove the hyphen from stored phone numbers since i am not able to make a phone call using VOIP. Everytime i make a phone call i have to type the number

    Did not know simple things such as removing hyphen from phone numbers will be so complicated. How do i remove the hyphen from stored phone numbers since i am not able to make a phone call using MobileVOIP. Everytime i make a phone call i have to type the number.

    Go into your contacts and edit them.

  • I bought the apple iphone 4G J-5 from Laos and now want to use it in India using the normal Airtel SIM but am not able to make calls from the phone pla. help

    I bought the apple iphone 4G J-5 from Laos and now want to use it in India using the normal Airtel SIM but am not able to make calls from the phone plz. help

    Is this what you have? (see above?) That's what I get when I search for iPhone 4G J-5 in Google.
    If so, this is NOT an iPhone! It is NOT made or sold by Apple. You have a cheap Chinese knockoff.

  • Not able to see previous posts

    Hi,
    I changed my login email id last week.
    After i change that i am not able see my previous posts nor my previous points in Oracle discussion forum.
    Please help in this issue.
    Thanks
    jyothi
    Edited by: jyothi on Nov 21, 2012 2:16 AM
    Edited by: jyothi on Nov 21, 2012 2:20 AM

    How did you change your email id.Did you refer this thread
    Re: Definitive change email question
    Also i too had a similar issues but put an request of merge account and email to otn and in week time it was updated
    You can look into this
    Regarding Email Id Change

  • I just purchased the numbers app for iphone and was hoping I would be able to work on spreadsheets on the go and then sync them to my mac so I can continue to work on them at home - not able to make it work?  Anyone know how to do this??

    I Just purchased the numbers app for iphone and was hoping I would be able to work on spreadsheets on the go on and then sync them to my mac so I can continue to work on them at home - not able to make it work.  Anyone know how to do this??

    Hi Louise,
    The links in this thread may be of use to you:
      Mac Numbers sync to iPad numbers and vice versa. 
    Regards,
    Barry

Maybe you are looking for

  • Safari keep crashing on iMac when I try to upload a video on youtube

    I use 2 user sign ins. On 1 of them mail and other applications keeps crashing. I have just tried to upload a video on youtube but when I choose the video from my files that I want to upload then safari crashes. This is what I got for these recent cr

  • PO Limit exceeded on SES & Invoice

    Hi experts, We have set up a service PO (item cat. = D) with limits only.  Service Entry Sheet is entered, and total activity exceeds PO limit.  Message SE364 appears warning users that limit is exceeded.  Message is set as warning in our system.  Af

  • IPhone 4S screen is black

    My brother changed my cracked screen for me and it was all working perfectly fine until I dropped my phone again and now my iphone screen is black. It still works and I can hear message and email notifications coming through. If someone rings me it w

  • Choosing pictures in senseme slideshow.

    How can I choose which pictures to show in senseme slideshow when using smartconnect. When daydream is inactive. Only pictures taken with the camera is shown. If I acticivate daydream all pictures in the picture folder show. I want to choose the pict

  • Can't start up - Can anyone help?

    I was attempting to change over to OSX from 9.2. I went thru the startup disk menu and chose the 10.2 disk. When it restarted it came up in what appeared to be DOS mode. It told me there was memory problem and said to type mac-boot to continue. When