Posts

Showing posts from September, 2012

Clean Windows From Trojan Horse

My laptop was infected with the Trojan:Win32/Weelsof.E, please check on Microsoft for the description: http://www.microsoft.com/security/portal/Threat/Encyclopedia/Entry.aspx?Name=Trojan%3aWin32%2fWeelsof.E I was desperate as Windows started up with a blank window that blocked everything else and I really didn't want to format everything and install my Windows/Ubuntu partitions again. I copied some antivirus software on my usb driver and started windows in safe mode (F8) I've downloaded a copy of Kaspersky Antivirus Removal Tool then I backed up everything and launched the removal tool while in safe mode. The Kaspersky Removal Tool is not a permanent protection but it will clean up your computer from all virus and malware ! It detected and removed the Trojan:Win32/Weelsof.E sucessfully and now I'm writing you from my IBM T42 with the cleaned Windows XP. lol

Watch Out with Recent Post Widget for Blogger

I was just trying to enhance my blog ad wanted to add a plugin to show the latest posts on my site. As I couldn't find a recent post plugin from the Blogger plugin list i decided to do some search to find out. I tumbled upon a site that showed a code snippet that I should copy and paste on a simple HTML/Javacript gadget and that would do the trick. Don't ever copy and paste strange javascript code snippets into your site. The script tag src looked like this: <script style="text/javascript" src="http://XXX.googlecode.com/files/recent_posts.js"></script> <script style="text/javascript">var numposts = 5;var showpostdate = false;var showpostsummary = false;var numchars = 50;var standardstyling = true;</script><script src="http://www.yourwebsite.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=showrecentposts"></script> And it was simple and easy to copy and paste that

Drupal Cron Failed To Run Solved

Drupal Cron should run everyday and I was doing some maintenance in one Drupal site when the message "cron failed to run" appeared and here is how I've solve it: Delete cron variables from the database DELETE FROM variable WHERE name="cron_semaphore"; DELETE FROM variable WHERE name="cron_last"; Empty cache Empty cache from /admin/settings/performance and Flush all caches from the administration menu Optimize all tables Go to phpmyadmin and check all the tables in your database, select Optimize tables and execute it, wait till is over. Optimize table is something you should do every now and then to keep the database healthy, it helps to rebuild all the indexes of the Myisam tables. Then launch cron: cron run successfully.