fixes

Cakephp Object not found!

 If you are getting an Object not found! cakephp error check out your httpd.conf

<Directory />

Options FollowSymLinks

AllowOverride All

# Order deny,allow

# Deny from all

Microsoft Activesync Test tools

Web based (microsoft) tool: https://www.testexchangeconnectivity.com/

Downloadable program: https://store.accessmylan.com/main/diagnostic-tools

If you are having problems getting an Iphone to sync to Exchange 2003 read this:

http://www.it-eye.co.uk/faqs/readQuestion.php?qid=1

I had major problems with a SBS 2003 setup and the above all helped.

 

 

Virtualbox 3.1 and Ubuntu Karmic greyed out USB problem

 Fix found here: http://ubuntuforums.org/showthread.php?t=1381318

Basically I wasn't in the vboxusers group:

1) Check if your username is in the group: 

cat /etc/group | grep v*box

2) If it isn't add it and logout/login.

sudo usermod -G vboxusers -a YOURUSERNAME

Eclipse 1.5 Galileo / Aptana / PDT install problem

Problem installing PDT on Eclipse/Aptana on Ubuntu 9.10?

You need to add the galileo update site first:

1) Help > Install new software > Add

2) "Galileo Update Site" : http://download.eclipse.org/releases/galileo

3) Go back to plugin manager and try again

Fixing Grub/Ubuntu Karmic Koala 9.10 after Windows 7 install

I just formatted my Vista install and installed Windows 7.Microsoft being Microsoft it assumed it was the only OS on my disk and replaced grub.To fix:

Asus Xonar DX in Ubuntu- better fix

I previously posted about my Asus Xonar DX in Ubuntu. I have found a better fix after my reinstall.

The problem I was having was when I adjusted the volume it stopped/stuttered for a few seconds.
The solution: here.

I enabled the backports repository and installed
GUI way:
System>Administration>Software Sources>Updates>tick Unsupported updates
System>Administration>Synaptic Package Manager>click Reload then search for inux-backports-modules-alsa-karmic-generic
and install and reboot. Done.

Terminal way:
Uncomment backports lines in /etc/apt/sources.list (sudo nano /etc/apt/sources.list)
sudo apt-get update
sudo apt-get install inux-backports-modules-alsa-karmic-generic

Eclipse/Aptana can't click or Add new software/plugins in Opensuse 11.2

I was just trying to install Aptana in my new OpenSuse 11.2 setup and ran into a strange problem...it seemed Aptana was just refusing to be added as a install source (instructions here). After closer examination (read googling) it turns out that it was just not reading the mouse click properly:
Solution found: here
Running
export GDK_NATIVE_WINDOWS=true
fixes the problem
Wrapper (assuming you are using eclipse at /opt/eclipse
#!/bin/bash
export GDK_NATIVE_WINDOWS=true
/opt/eclipse/eclipse

Delete Outlook Mail profile when you can't run applet

Delete from the registry. I don't know your version of Windows, but for Windows XP and 2000, the mail profile is in:
HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles.

Locate the bad one and delete it.

Source: http://help.wugnet.com/office/delete-profiles-mail-applet-Control-Panel-...

Spotify under Wine in Linux - Can't open spotify links in Firefox

Fix for: 'Firefox doesn't know how to open this address, because the protocol (spotify) isn't associated with any program.' In the Spotify instructions (here) it says:
Opening spotify URIs from browsers
 
This has been tested and works with Firefox (Iceweasel), Epiphany and Opera 9.5.
 
To be abe to open spotify URIs you first need a simple script:
 
echo '#!/bin/sh' > ~/.browser2spotify
echo 'exec wine "C:\Program Files\Spotify\spotify.exe" /uri "$@"' >> ~/.browser2spotify
chmod 755 ~/.browser2spotify
 
(Change the path to the spotify executable if necessary)
Firefox/Epiphany
 
In Epiphany enter the following in the URI field:
 
about:config
 
Right click and select New > Boolean and name it network.protocol-handler.external.spotify and set it to True
 
Right click and select New > String and name it network.protocol-handler.app.spotify and set the name to ~/.browser2spotify
You also need to add boolean:
network.protocol-handler.expose.spotify
with type false. This worked for me. The fix is from grus comment here. Thank you grus!
Syndicate content