Upgrade Blackberry Gemini 8520 to OS 5.0

Posted by cikul | Posted in Technology, Telecommunication | Posted on 23-02-2012-05-2008

0

Prepare this tool :

  1. Blackberry Desktop Software, can be download here
  2. BBSAK newest version, download from here
  3. Blackberry Software Update, The newest version can be found for AT&T, select option “Blackberry Curve 8520 smartphone”

Read the rest of this entry »

Incoming search terms:

upgrade os blackberry gemini 8520 | 8520wifiM_PBr5 0 0_rel1728_PL5 2 0 96_A5 0 0 1067_AT_T exe | reload software 507 gemini 8520 | BlackBerry Handheld Software v5 0 0 1728 (All Languages) free download | upgrade blacberry gemini curve online | upgrade os 5 blackberry gemini 8520 | reload software 507 blackberry curve 8520 | Downloading BlackBerry Handheld Software v5 0 0 1728 | upgrade os blackberry 8520 | os 5 blackberry 8520 | 

Share and Enjoy

know the svchost.exe file in windows

Posted by cikul | Posted in Technology | Posted on 28-10-2011-05-2008

0

When our windows operating system was slow, sometimes we assume it is a virus, especially when we check in task manager there are process that appears many times with high resource consuming.

One of the files that we often suspect as the virus is svchost.exe file, this file sometimes appears very much in the process of our PC’s memory, and many viruses disguise themselves by giving its name svchost.exe, but what is svchost.exe process? and how to distinguish a genuine svchost.exe process or a virus?

In the Windows NT family of operating systems (Windows XP, Windows 2003, Windows Vista, etc.) svchost.exe (Service Host) is a system process that hosts some services in windows. File %SystemRoot%\System32\svchost.exe can run in multiple processes at once, and each process handles one or more processes.

Read the rest of this entry »

Incoming search terms:

general process service windows” | svchost | 

Share and Enjoy

Free Portable PHP IDE with Drupal, Worpress, Codeigniter, Jquery Support

Posted by cikul | Posted in Freeware, PHP | Posted on 31-01-2011-05-2008

1

Are you tired looking for free PHP IDE that have compatibility with common Frameworks? Now you can try CodeLobster Portable PHP IDE, multifunctional portable IDE FREE absolutely with all standard features:

PHP/HTML/CSS/JavaScript highlighting, advanced PHP/HTML/CSS/JavaScript autocomplete, Powerful PHP debugger, SQL autocomplete, Context and Dynamic Help

Read the rest of this entry »

Incoming search terms:

codeigniter ide | codeigniter portable | php ide with jquery support for mac | php ide | my dhika | ide php drupal | ide for codeigniter windows | free php editor untuk codeigniter | free php debugger | portable php editor autocomplete | 

Share and Enjoy

How To Access OpenVPN using Windows, Linux, MAC OS X and Windows Mobile for Pocket PC

Posted by cikul | Posted in Free Stuff, Freeware, Linux, Technology, Tips, Windows | Posted on 10-11-2010-05-2008

0

The purpose of this document is to lead the users to configure theirs OpenVPN clients to access to a VPN server. We will see how to install and configure the most used OpenVPN’s GUI for Microsoft Windows, Linux, Mac OS X and Windows Mobile for Pocket PC. At the end of the document we will learn to use the OpenVPN’s command line interface. This last possibility is useful, because the openvpn command, which you can execute by using the prompt (Unix Shell or Windows Prompt) accepts the same parameters and has the same behavior regardless from which Operating System you use. In addition, you could use the openvpn command in a script to automatically start the VPN connection.

Read the rest of this entry »

Incoming search terms:

install openvpn client from source tar on centos | open vpn config smart | openvpn client windows | openvpn smart | openvpn smart card | trafficserver | zeroshell for windows | zeroshell openvpn centos client | 

Share and Enjoy

tips : setup.exe always opened in notepad, how to solve this problem?

Posted by cikul | Posted in Windows | Posted on 31-12-2009-05-2008

3

Today I have problem in one of pc in my office, the problem is while we want to install something, and we try to execute file setup.exe or install.exe (default name for installation file), they don’t works  and notepad opened with ASCII code that i don’t understand what its mean.

Read the rest of this entry »

Incoming search terms:

hkey_local_machine software microsoft windows nt currentversion image file execution options setup exe | HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windowsnt\CurrentVersion\Image File Execution | hklm\software\microsoft\windowsnt\currentversion\imagefileexecutionoptions\imanager exe | image file execution options | setup always open notepad | setup exe always open with notepad | setup exe open notepad | why setup exe opens in notepad | 

Share and Enjoy

Repair Internal Server Error Cpanel account

Posted by cikul | Posted in Linux | Posted on 19-08-2008-05-2008

2

If you have cpanel server, and have phpsuexec or suphp installed and you get “Internal Server Error” message while accessing account on your server, you must see permission in users directory. If PHP runs with phpsuexec or suphp, all files under accounts must have correct ownership. If you see that your directory/account ownership still nobody, you must change it manually or you can use cpanel included scripts to repair permission for all accounts.

First, you must log into SSH, and then you can run this script :

root@server [/]# /scripts/chownpublichtmls

hope this helps

Incoming search terms:

internal server error cpanel | Internal Server Error in cpanel | 

Share and Enjoy

Initial Hardening & Optimization Cpanel Server (part 2)

Posted by cikul | Posted in Linux | Posted on 07-07-2008-05-2008

0

In Part 1 we have configured cpanel basic setting, now we will configure and install apache, php setting, firewall and other tool to secure our server.

Read the rest of this entry »

Incoming search terms:

cpanel server hardening | apache optimization cpanel | hardening cpanel server | step hardening cpanel server | 

Share and Enjoy

Change unix password with Python

Posted by cikul | Posted in Python | Posted on 11-01-2007-05-2008

2

Do you ever have problem while execute /usr/bin/passwd from your python code? actually i have problem with changing unix password from my python code.

First i try using pipe to control output from /usr/bin/passwd, hopefully i can send text with write() function.
this is the code :

#!/usr/bin/python
import os
COMMAND = 'passwd'
PASSWD  = 'mypassword'

# open a pipe to passwd program and
# write the data to the pipe
p = os.popen("%s" % COMMAND, 'w')
p.write(PASSWD)
p.write('n')
p.write(PASSWD)
p.close()

But i failed to change the password.

The solution is use Pexpect
Read the rest of this entry »

Incoming search terms:

change user password python | change linux password with python | python change password linux | program python | change user password in python | change unix password web python | change password script python | change password python | change passwd from python | python change user password | 

Share and Enjoy