How to force windows-1256 encoding permanently for new sessions/ pages

I want Firfox to keep my settings of Character encoding of Arabic(windows-1256), so that whenever i open Firefox next time, I do not need to use views-> Character Encoding again. I used Tools -> Options -> Content -> Fonts & Colors -> advanced to set my choice. Yet I start FireFox again , my arabic text does not display correctly. I had to manually to go to View-> Character Encoding to do the same.
Thank you in advance for your concern

The add-on works, but an annoying message keeps displaying : " To display this page, FireFox must send information that will repeat any action ( such as a search or order confirmation) that was performed earlier. By the Internet Explorer does not such a problem

Similar Messages

  • When I open a new window only the history for that session is available. Where did the rest of my history go?

    If I close out all my current window/tabs and open a new session the only history I can find in for that window. None of my past browsing history is available. Anyone have any idea on how to find the rest of my history?

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Windows could not search for new updates after applied June 2014 Windows Updates - Error code 80244004

    After applied June 2014 Windows Updates from Microsoft (Not using WSUS server to obtain WU), our Windows Server 2012 R2 and Windows Server 2008 now getting this error message when we perform the "Check for Updates":
    Windows could not search for new updates.  Error code 80244004. 
    Richard

    Hi Richard,
    Just addition, please refer to following KB to reset Windows Update components and monitor the result.
    How do I reset Windows Update components?
    If didn’t use ESET security software, please also refer to following thread and check if can help you.
    Latest
    version of Windows Update causing error 80244004
    Hope this helps.
    Best regards,
    Justin Gu

  • How to Set A Default Start Time For New Events In Calendar?

    How to Set A Default Start Time For New Events In Calendar?

    John,
    Thanks for that suggestion - could not get it to work. However, I did manage a different approach. I finally determined the sequence of events in terms of how the various events and listeners fire (I think).
    Basically, the CalendarActivityListener fires, followed by the listener associated with the Calendar object's Create facet, followed finally by the CalendarEventListener - the final is where the TriggerEvent is available and then finally, control is passed to the popup/dialog in the Create facet. So, my approach of trying to set/get the TriggerDate in the user's HTTP session was doomed to failure because it was being get before it had been set :(
    Anyway, I ended up adding a bit of code to the CalendarEvent listener - it grabs the current BindingContext, navigates through the DCBindingContainer to derive an Iterator for the ViewObject which drives the calendar and then grabs the currently active row. I then do a few tests to make sure we're working with a "new" row because I don't want to alter start & end dates associated with an existing calendar entry and then I define the Start and End dates to be the Trigger Date.
    Works just fine. Snippet from the listener follows
    BindingContext bindingContext = BindingContext.getCurrent();+
    *if ( bindingContext != null )    {*+
    DCBindingContainer dcBindings = (DCBindingContainer) bindingContext.getCurrentBindingsEntry();+
    DCIteratorBinding iterator = dcBindings.findIteratorBinding("EventsView1Iterator");+
    Row currentRow = iterator.getCurrentRow();+
    if ( currentRow.getAttribute("StartDate") == null)+
    currentRow.setAttribute("StartDate", calendarEvent.getTriggerDate());+
    if (currentRow.getAttribute("EndDate")==null)+
    currentRow.setAttribute("EndDate", calendarEvent.getTriggerDate());+
    *}*

  • How do I change the default zoom for New Tab only?

    The New Tab zoom in Firefox 33 is too high to see all 12 of my thumbnails. I changed it using ctrl- but the next time I opened a New Tab, the zoom was back at 100%. How do I change the default zoom for New Tab only?

    cor-el, what am I looking for in '''content-prefs.sqlite'''?

  • How do i to totally reset iPad for new users?

    How do i to totally reset iPad for new users?

    Welcome to the Apple Support Communities
    Open Settings > General > Reset > Erase All Content and Settings. After erasing your device, turn it off holding Sleep button

  • I have tried for new tab page, also done the process from about:config n all, i successfully got the newtab but once i restart firefox i get blank newtab

    i have tried for new tab page, also done the process from about:config n all, i successfully got the newtab but once i restart firefox i get blank newtab not the most visited sites type new tab... plz help

    In case you are using "Clear history when Firefox closes":
    *do not clear the Cache because Firefox will disable the disk cache in such a case
    *do not clear the Browsing History
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history": [X] "Clear history when Firefox closes" > Settings
    *https://support.mozilla.org/kb/Clear+Recent+History
    See also:
    *https://support.mozilla.org/kb/thumbnails-on-new-tab-page-are-missing
    The thumbnails on the about:newtab page are generated from the cache, so if the page is not in the cache or otherwise can't or won't (secure pages) be rendered as a PNG image then you will get an empty box.
    *Do not use Clear Recent History to clear data like the cache and the history when you close Firefox
    If there is no history then you get an about:newtab page with empty boxes (no URLs).

  • How to force sql developer to prompt for user input for every execution ?

    Hi Folks,
    Environment: Oracle 11g (on Windows 7)
    SQL Developer: *3.1.07*
    I am executing a PL/SQL code off Sql Developer. The code uses substitution variables to prompt user for input. However,I am only prompted for the user input for the very first run of the code. For the subsequent executions, the code simply picks up the user input from the very first run. This behavior persists for all subsequent runs of the code.
    I have executed the same piece of code from SQL*PLUS and the behavior seems normal (i.e. I am prompted for fresh input for every execution)
    How can flush out the old user input so I can be prompted for new user input for every run of the code in sql developer?
    Thanks in advance
    rogers42

    Hi Rogers42,
    1/try
    undefine
    undefine fred
    select '&&fred' from dual;
    [run this multiple times]
    [prompts gere]
    old:select '&&fred' from dual
    new:select 'a' from dual
    'A'
    a
    [prompts here]
    old:select '&&fred' from dual
    new:select 'b' from dual
    'B'
    b
    2/try
    exit (requires recent version of sql developer: tools->preferences->Database->worksheet->Re-initialize on script exit command)
    select '&&fred' from dual;
    exit
    run this multiple times
    [prompts here]
    old:select '&&fred' from dual
    new:select 'x' from dual
    'X'
    x
    Commit
    [prompts here]
    old:select '&&fred' from dual
    new:select 'y' from dual
    'Y'
    y
    Commit
    3/use &fred instead of &&fred
    For background see
    http://totierne.blogspot.co.uk/2010/04/substitution-and-bind-variables.html
    -Turloch
    SQLDeveloper team

  • How to force IE7 to accept transparency for an iframe ?

    When using Firefox, the following iframe is transparent by
    default :
    <div id="mainContent">
    <iframe src="shop/index.php" name="main" width="820"
    height="550" frameborder="0" id="if_main"></iframe>
    </div>
    However, the same iframe is displayed in white (not
    transparent) wih IE7.
    Is it a solution to force IE7 to accept transparency for the
    iframes ?
    Thank you in advance for your help.
    PS: the allowtransparency option doesn't work !

    It works. Try this:
    <iframe src="shop/index.php" name="main"
    allowtransparency="true"
    width="820" height="550"
    frameborder="0" id="if_main"></iframe>
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

  • How to enable Windows 7 ISO file for iMac Computer

    ** extremely urgent
    Dear Sir or Madam:
    Due to my misunderstanding,an Apple Customer has purchased Windows 7 ISO file for his iMac Computer.
    But, the fact is that Apple only allows this on computers that support booting from an USB drive (aka they don't have optical drive).
    Though, whether i can adopt an non-recommendation folk prescription, i.e."http://www.codez4mac.com/forum/viewtopic.php?f=212&t=61921"?
    Are there any risk there ?
    Please correct me ASAP.
    Thank you !

    Great news, thanks!
    Not  sure KB codes on what? Burning an ISO to DVD? Pretty Simple in Disk Utility, or the free Burn App...
    http://hints.macworld.com/article.php?story=20060619181010389
    http://burn-osx.sourceforge.net/Pages/English/home.html
    Meanwhile, are there any risks there?
    I doubt any "risk", only very likely thing is that OSX updates will likely rewrite the supported Macs file & if you had need to install Win7 again from ISO, then you'd need to edit that file again.
    I think there was mention of this by Mike Breeden today, but the site is not available for the first time in years right now...
    http://xlr8yourmac.com/
    Could Apple Developers keep an eye on this?
    Between you, me, & the woodwork, I doubt they're interested.
    But...
    http://www.apple.com/feedback/macosx.html

  • How to make Safari browser always open a new web page in a new Safari browser window which was clicked from a PDF document URL

    Hi
    I have a web application which would enable users to see a list of PDF document on the web page and when the user select the PDF document, it will be open by a adobe PDF view
    Within the content of the PDF document, it will contact URL links to some other portal web pages which we would like these other web pages to be open in a new browser window, but our testing shows that the new web pages may not always open in a new browser window.
    Could you help to advise how I can enforce that new web pages that are clicked from the PDF document can always be open in a new Safari browser window ?
    Thanks in advance.
    Regards
    Sen Lee 

    Hello,
    In order to change the default reader for PDF files (to not open PDF files with Firefox's internal PDF reader), follow these steps:
    #Go to ''Tools'' > ''Options'' (or ''Firefox'' > ''Options'').
    #In the Options window, select the ''Applications'' tab.
    #In the ''Search'' field, type ''PDF''. You should find ''Portable Document Format (PDF)''.
    #On the right handside you should find an ''Action'' column. Use that to select your favorite PDF reader. In order to view PDF files in Firefox, choose ''Preview in Firefox''.
    Did this fix your problems? Please report back to us!
    Thank you.

  • How to force links to open in a new tab everytime?

    Hi,
    I don't want to have to hold down buttons on my keyboard. When I click a link I wish it to always open in a new tab window like it does for me in internet exploder. How do I accomplish this in Safari?
    Thank you for your time.

    I'll never get used to having to use a hotkey to get something to show up in a new tab, that much I can say for certain. And I've not yet moved completely away from IE. IE unfortunately has activeX scripts that some automobile manufacturers internal sites use that I must access daily and they only work with the I.E. browser, so even trying to go to their sites with a browser like Safari only produces a page that says you must be using the latest I.E. browser due to bla bla bla.
    Its hard to make the switch 100% when your up against these huge auto mfg's that wont be switching to any other browser anytime soon. Even trying to use some browsers that spoof the site into thinking they are the latest I.E. browser does no good since they can't use the activex controls on the pages.
    I also severely miss having my mouse gestures. I use them extensively in I.E. to navigate back and forth and to close windows etc. Has anybody seen any mouse gestures for safari yet? I could use them more than having windows open in new tabs even. Also safari is still a bit unstable, I've had it crash about 5 times tonight, compared to Internet Exploder which crashes about once per day.
    Message was edited by: City Builder

  • How to install windows xp on bootcamp on new Mac mini?

    How can i install windows xp on bootcamp on new Mac mini?
    I know that i should get an external usb optical drive, but buying such hardware for one use is a waste of money. Is there any other method?
    I currently own a MacBook white, and really like the configuration. I it possible to copy the image of bootcamp to new mac mini? If so, what will happen to hardware and drivers?

    Admiralali wrote:
    Let me get this right:
    1- copy the exact image of the winxp installation dc to USB
    2- start bootcamp assistant, go through everything, till rebooting
    3- boot from USB (hold ALT and select the USB volume)
    4- go through winxp setup and done!
    Am I missing anything?
    I think that USB would be readable only on Mac os or winxp, but will the winxp installer read from USB?
    Correct me if wrong.
    Having read further websites, I am now a bit more dubious you can do this, at least with an XP installer.
    However if you have a USB memory stick and an existing Windows computer (even a Boot Camp one) or can borrow one you could try using the free WinToFlash utility to make a supposedly bootable USB memory stick of the installer. See http://wintoflash.com/overview/en/
    The problem is XP predates EFI firmare and XP only really knows BIOS firmware. As such (supposedly) XP would have problems booting from a USB device fully - it might lose connection part way through. Windows Vista and 7 do support EFI firmware.
    The other approach I mentioned of temporarily moving the hard disk from the Mini to the MacBook so you can use the MacBook internal CD/DVD drive would work - be careful of the cables. Fortunately a new Mac mini and an old MacBook are two of the easier models to get at the hard disk. See http://www.ifixit.com/Guide/MacBook-Core-2-Duo-Hard-Drive-Replacement/514/1 (they also list other MacBook models) and http://www.ifixit.com/Guide/Installing-Mac-Mini-Mid-2011-Hard-Drive-Replacement/ 6422/1
    Regardless of which method you try, the first step would be on the Mac mini to run Boot Camp Assistant and to create the partition for Windows. Then via either method try booting from a Windows XP installer.
    As I have taken Macs apart many times, I personally might go the swapping the hard disk over route.

  • Windows 7 bootcamp issues for new iMac 27

    I bought an iMac 27 on Friday. Have used bootcamp on an older mac previously with no issues. I've tried now for several days to instal windows 7 without success. I've tried to 32 and 64 bit versions and both lead to either a blue or black screen freeze. I've also tried deleting the ATI.sys file but this also hasn't worked.
    Would appreciate a walkthrough of how I can sort this (please put it in
    Laymans terms as I am not particularly systems literate.)

    Can only suggest starting with "iMac Black Screen"
    http://support.apple.com/kb/TS3173
    http://www.pcpro.co.uk/blogs/2009/10/26/how-to-install-windows-7-onto-the-new-27 in-imac/comment-page-1/

  • Mail forces "include when automatically checking for new mail"

    I have two fully updated Leopard machines and a .Mac account through which I sync mail accounts, etc.
    I primarily use IMAP to check mail, but I have some POP accounts set up in mail so that I can sometimes send mail from a different account. I uncheck the box on the advanced tab in Mail Preferences that says "Include when automatically checking for new mail." I have checked the box "Enable this account" which allows me to send the mails on a case-by-case basis.
    The system works quite well when it stays in this mode. But sometimes the system forces the box to be checked on the POP accounts and it downloads mail that I don't want (this mail gets routed to the IMAP accounts anyway, so I wind up getting it twice).
    I cannot figure out how to stop this from happening. I have made sure both machines have identical account setups. I have forced synced from one machine with the proper account setup to .Mac, then force synced from .Mac to the other machine to ensure they were equal. But it keeps happening anyway.....
    Any advice is greatly appreciated. Thank you.

    For the purposes you have these accounts, both deselect (as you have done) Include when checking for new mail, and take the account Offline. The latter does prevent sending with the account, but will stop the undesired downloads. I have found the need to do both of these things at least since Mail 2.x and Tiger, and possibly since Panther.
    Ernie

Maybe you are looking for