Problem With AVG Update

Problem January 6th, 2009

I have this problem on my Vista. I can’t update my AVG virus databases. Update process stopped and just pop-up this error message.

Why it happened? I do know really. So I Googling and found the solution for this problem.

Solution from AVG Forum:

You need to rename/remove the CTF temp files in C:\Documents and Settings\All Users\Application Data\Avg8\update\download…. Dont delete all the .bin files in there unless you want to re-run all updates since your original installation (reinstallation seems to cause a problem in IEs Link Scanner which causes IE to Crash). Only rename/remove the avginfo files that end with .ctf….

But I think this solution only for windows XP.

Windows Vista users: Delete the .CTF files from the following folder: C:\ProgramData\avg8\update\download

Read the rest of this entry »

Sphere: Related Content

Tags:
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

My CMS Project - Code Igniter 1.7

Code Igniter November 27th, 2008

Yeah, overall admin page on my cms project is done. But this project for X company  had stopped for financial reason. So I’ll plan this project to open source blog management system or usually called blog engine and  may be I’ll call it Semesta Blog engine or SimpleSc Blog Engine (Just planning). Actually this is my first project that using Code Igniter. Hmm.. Well, I’ll give you an overview of admin page on this project.

Read the rest of this entry »

Sphere: Related Content

Tags: ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Dynamically Dropdown Value On Code Igniter

Code Igniter November 24th, 2008

Yeah, Code Igniter again. I this day i got problem with dynamically dropdown value on Code Igniter. First think i hope I can generate dropdown with values from mySql database. I want to use form helper that provided by Code Igniter to generate form.

Basically to make dropdown input on controller are:

1
2
3
4
5
6
...
$data['input_category'] = array(
	"1" => "Mobile",
        "2" => "Web"
); 
...

Then in views:

1
2
3
...
<?php echo form_dropdown('category',$input_category);?>
...

Prety simple right??
but now.. How to make it values generate dynamically??
Read the rest of this entry »

Sphere: Related Content

Tags: ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Make A Successful Website by Jack Mack SEO services

Info November 10th, 2008

Today the Internet is highly competitive, it is not longer good enough to just create a website and watch the money roll in. Modern websites have to go that extra mile if they want to see a good return on their investment.

I will discuss the 10 things that you need to get right to be successful in the world of ecommerce. You could fill several volumes of books describing everything; however, I am going to discuss the more important ones.

Read the rest of this entry »

Sphere: Related Content

Tags: ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Using Gravatar Without Plugin by Connor Wilson

Wordpress November 6th, 2008

Connor Wilson has published nice post. He wrote about how to make gravatar without plugin and I’ll share for you. First, add this script to your comments page.

1
2
3
4
5
6
7
<?
$email = ""; //email that user use in gravatar
$default = ""; // link to your default avatar or if user doesn't have gravatar
$size = 40; // size in pixels squared
$grav_url = "http://www.gravatar.com/avatar.php?gravatar_id=
  ". md5($email) . "&default=" . urlencode($default) . "&size=" . $size;
?>

Then call it gravatar on tag <img src”"> like this:

1
<img src="<?=$grav_url ?>" height="<?=$size ?>" width="<?=$size ?>" alt="User Gravatar" />

Put it on each comments. That’s all.. Easy right.. hehe.

Thx Connor. I’ll use it on my current project with Code Igniter.

Sphere: Related Content

Tags: , ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Blogroll Link Update