Dec/090
Misc: BlackBerry activation error: service connection unavailable
- Remove the battery and reinsert it.
- Go to Options, Advanced Options, Host Routing Table.
- Click Menu, then Register Now.
Go back to your messages and wait a few seconds to see if you get a confirmation email. If so, try to reactivate, otherwise call your carrier and have them re-provision your phone.
Oct/090
Linux: Remove installed RPM packages manually
Sometimes you screw up an application and are unable to use rpm -e to remove them from your system. Here is how you go about doing that:
To find installed RPM packages:
rpm -qa | grep <string>
To remove:
rpm -e --nodeps --allmatches <package name>
Aug/0913
Misc: Asus Eee PC 1005HA network adapters and Ubuntu Jaunty netbook remix
There are several ways of doing this. You can download the Atheros driver source and compile, but this is by far the simplest since you only have to download the deb package and install to get your wireless network to work and do the rest while connected. Here is how:
Download your kernel’s Linux backports modules from here – mine was 2.6.28-11 generic. If you don’t know what your kernel version is use “uname -r” in console. Note that installing the wrong build can break your package manager and cause more frustration, so be careful. Copy the file to a flash drive and install it on the Eee. Reboot and your wireless NIC should work.
sudo dpkg -i linux-backports-modules-2.6.28-11-generic_2.6.28-11.12_i386.deb
Once your wireless connection is up and running, connect to the Internet, fire up Synaptic Package Manager and search for “eee”. You will see a package called “atl2-source” which is your Linux base driver for Atheros Ethernet Controller. Install, reboot and your wired network controller should also work. You can also run the following command in console instead of using Synaptic:
sudo aptitude atl2-source
There are a few more packages for Eee-PC in Synaptic… Make sure to install the ACPI driver.
Aug/090
Outlook: cannot start microsoft office outlook. cannot open the outlook window error message
Start Outlook with /resetnavpane switch. That should fix it.
Jul/090
Misc: Error 500 – Internal server error while editing posts – unable to view wordpress dashboard items
If it’s only happening to a few posts or you can’t see all items/boxes in your dashboard then it’s your php module starving for more memory.
If you’re hosting the site, edit php.ini and add give it more memory. If you don’t know where php.ini is use the following command:
find / -name "php.ini"
Find memory section and dedicate what you want.
If your site is hosted, then create a php.ini file in wp-admin directory, and add the following line:
memory=15MB
If 15 is not good enough try 20 or 30.