Category: archived

Get the Old Chrome Bookmark Manager Back

Get the Old Chrome Bookmark Manager Back

The newest version of Chrome features a fancy new bookmark manager and interface that’s all about thumbnails. If you’re not a fan of that snazz, Techdows points to a flag you can switch to get the old interface back.

Getting the old interface back is easy:

  1. Head to chrome://flags/#enhanced-bookmarks-experiment
  2. Change the setting to “Disabled” and click “Relaunch Now”

That’s it, when Chrome reopens, you’ll be back to the old view.

From: Lifehacker

FRM-92095: Oracle Jinitiator version too low – please install version 1.1.8.2 or higher

FRM-92095: Oracle Jinitiator version too low – please install version 1.1.8.2 or higher

when i was going to open the any form of the oracle R12 system  from the my client pc  Firefox  it applier-ed  the below error  

Workaround 

1  install and update  to Firefox latest version
2  update the java from the control  panel
3  then configure the following parameter to the  java setup
4  clear the Firefox cash and reboot PC and retest the issue 


 

Here you have to update with following parameter  and click ok button

-Djava.vendor=”Sun Microsystems Inc.”

 

via FRM-92095: Oracle Jinitiator version too low – please install version 1.1.8.2 or higher | ITToolkit.

How to get security updates for Windows XP until April 2019

Written by  on May 24, 2014 in Windows – Last Update: May 24, 2014 36
Article reprinted from ghacks.net

Microsoft’s official support for the Windows XP operating system ended more than a month ago. While some companies and organizations are still receiving updates for the operating system, end users do not.

 These companies pay Microsoft for that, usually because they were not able or willed to migrate computer’s running Windows XP to another operating system before the extended support phase for the system ended.

There is another exception to the end of support rule: Windows Embedded Industry, formerly known as Windows Embedded POSReady, operating systems continue to receive updates.

What makes this interesting is the fact that Windows Embedded POSReady 2009 is based on Windows XP Service Pack 3, and that the security updates released for that system are identical with the ones that Microsoft would have released for XP systems.

The extended support for Windows Embedded POSReady 2009 systems ends on April 9th, 2019 which means that you can use the trick to get another five years of security patches for XP.

windows xp updates

What you cannot do is go ahead and install those updates as you will get a version mismatch error when you try to do so. There is however a trick that you can use to bypass those checks so that you can install those updates on your version of Windows XP.

Note: The trick works only for 32-bit versions of Windows XP SP3 and not 64-bit versions. While POSReady systems are very similar to Windows XP systems, it is recommended to back up the system before you make any changes as differences between the systems may result in issues after installing updates designed for it.

All you need to do is add the following to the Windows XP Registry:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\WPA\PosReady]
“Installed”=dword:00000001

I have uploaded a Registry file for you that you can use for that purpose. You can download it here: xp-security-updates.zip (6039 downloads)

If you prefer to create one on your own do the following:

  1. Create a new plain text document.
  2. Paste the contents displayed above into it.
  3. Save the new document as xp.reg.
  4. Double-click the Registry file afterwards to add the contents to the Registry.

Alternatively, open the Registry Editor manually: tap on Windows-r, type regedit and hit enter. Navigate to the key listed above and create a new Dword with the value listed there as well. (via Desk Modder and Sebijk)

Both source sites are in German. If you open the Sebijk site, you will also find instructions on how to get this to work on 64-bit Windows XP systems. It involves running a batch file that replaces original update files with temporary ones that bypass the restrictions set in place.

Closing Words

If you are running Windows XP and do not want to switch to a new system or cannot, then you may want to try this trick to install security patches designed for the POSReady 2009 operating system on your PC.

I recommend highly that you create a backup before you update the system as there is no guarantee that all updates will work properly on XP PCs. While POSReady 2009 uses the same core, some things are different after all.

Nevertheless, this is better than not installing any security updates.

Article Name:  How to get security updates for Windows XP until April 2019
Author: Martin Brinkmann
Description: Support for Windows XP ended April 2014. but there is a trick that you can make use of to get security updates for the operating system.

How to fix Schedule Missed error on WordPress posts

If you are experiencing then problem “scheduled missed” when scheduling a post in WordPress, I found the solution on http://blog.5ubliminal.com/.  Simply do the following:

  1. Copy the code shown below and save it as scheduled-mias.php.
  2. Upload the file to wp-content/plugins on your WordPress site
  3. From your dashboard, enable the plugin named Scheduled Mias

That’s all there is to it.


<?php

/*

Plugin Name: [Post] Scheduled MIA-s

Plugin URI: http://blog.5ubliminal.com/topics/wordpress/plugins/

Description: Bring the left-for-dead <code>Missed Schedule</code> (MIA) posts back to life.

Version: 5.U.B

Author: 5ubliminal

Author URI: http://blog.5ubliminal.com/

Support URI: http://blog.5ubliminal.com/support/

*/

// —————————————————————————– //

define(‘SCHEDULEDMIAS_DELAY’, 15); // Minutes .. change as you wish

define(‘SCHEDULEDMIAS_TRANSIENT’, ‘scheduled_mias’); // Minutes .. change as you wish

// —————————————————————————– //

class Schedules_MIAs{

public function Schedules_MIAs(){ $this->__construct(); }

public function __construct(){

add_action(‘init’, array($this, ‘onInit’), 1);

}

public function onInit(){

// I disable internal cron jobs for post publishing completely

// … Comment the line below to let WordPress try do its job before we kick in

remove_action(‘publish_future_post’, ‘check_and_publish_future_post’);

if(get_transient(SCHEDULEDMIAS_TRANSIENT)) return; // Make sure enough time elapsed since last run

set_transient(SCHEDULEDMIAS_TRANSIENT, 1, abs(intval(SCHEDULEDMIAS_DELAY)) * 60); // Reset delay

global $wpdb; // Global $wpdb object

// Find MIA post_IDs, try both LOCAL datetime and GMT datetime

$scheduledIDs = $wpdb->get_col(

“SELECT `ID` FROM `{$wpdb->posts}` “.

“WHERE ( “.

” ((`post_date` > 0 )&& (`post_date` <= CURRENT_TIMESTAMP())) OR “.

” ((`post_date_gmt` > 0) && (`post_date_gmt` <= UTC_TIMESTAMP())) “.

“) AND `post_status` = ‘future'”

);

if(!count($scheduledIDs)) return; // None found … bail

foreach($scheduledIDs as $scheduledID){

if(!$scheduledID) continue; // Just in case

// Publish each post_ID the WordPress friendly way

wp_publish_post($scheduledID);

}

}

};

// —————————————————————————– //

$Schedules_MIAs = new Schedules_MIAs();

// —————————————————————————– //

?>