Konqueror and the Cookiejar

2008-07-15 Thread Paul Horechuk
Since upgrading to 7.0 Stable, I've noticed an occasional problem with 
konqueror. I've been recompiling my ports for the past few weeks and have 
noticed that some sites are complaining about cookies not being enabled. 
Further investigation has revealed that if I start konqueror from the 
terminal prompt, I can get an error message:
khtml (dom) Can't communicate with the cookiejar!

A workaround I've discovered is to run kded first. Konqueror works with 
cookies after that.

Question:
What process is NOT running kded during the startx process? Where is there a 
log to track this?

-- 
Paul Horechuk
  Think Free 
Use Open Source Software

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: auto cvsup

2005-06-27 Thread Paul Horechuk

There is another alternative to just doing the cvsup...

Kövesdán Gábor wrote:

Maher Mohamed wrote:


how can i upgrade my cvsup weekly with an auto way?

 

You should use crondaemon. Place the following line to the end of 
/etc/crontab:


15  4   *   *   6   rootcvsup /some/path/to/supfile

The number six represents the sixth day of the week, the 15 is the 
minute number and the second is the hour, thus this will run on every 
Friday (if I remember correctly, I'm not sure the numbering starts with 
Sunday) at 4:15.


This is an essential part, but I decided to take the next step. Not only 
do I get the updated cvsup, but I check for changes...


cvsup -l  (as root)
0 21 * * * /usr/local/bin/getupdates > /var/log/updates.log 2> 
/tmp/updates.err


This runs daily at 9pm with a log of the activity in 
/var/log/updates.log and an error report in /tmp/updates.err


getupdates: (set this as executable chmod 755)

#!/bin/sh
# get the updated sources
cd /usr/src
/usr/local/bin/cvsup -g stable-supfile
# get the updated ports tree
cd /usr/ports
/usr/local/bin/cvsup -g ports-supfile
# get the updated ports index
make fetchindex
# rebuild the list of changes, i.e. ports that have updates available
/usr/sbin/pkg_version -v | grep "<" > updates
exit 0

In the morning I simply go to the ports directory and issue:

more updates

to find out which ports have been affected. I can then use portupgrade 
 as required.

As a bonus, I can also run getupdates at any time to recheck the updates.



Cheers,

Gábor Kövesdán

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: libjava.so not found

2005-02-02 Thread Paul Horechuk

   Brian Clapper wrote:

On 1 February, 2005, at 18:49 (-0500)
Paul Horechuk [1]<[EMAIL PROTECTED]> wrote:



During make of openoffice-1.1
make -DWITHOUT_MOZILLA



=
Building project sandbox
=
/usr2/ports/editors/openoffice-1.1/work/sandbox/com/sun/star/lib/sandbox
mkout -- version: 1.3
Making dpj...

--
Making: ../../../../../unxfbsd.pro/misc/lib_sandbox.dpc
dmake subdmake=true  -f makefile.mk product="full" depend=t ALLDPC
--
No Dependencies
javac -classpath
".:../../../../../unxfbsd.pro/class:/usr/local/jdk1.5.0/jre/lib/rt.jar:."
-d ../../../../../unxfbsd.pro/class  AudioProxy.java
Cachable.java   ClassContext.java
ClassContextImpl.java   ClassContextProxy.java
CodeSource.java Disposable.java
ExecutionContext.java
Holder.javaImageProducerProxy.java JarEntry.java
JarInputStream.java Permission.java
PermissionCollection.java   ProtectionDomain.java
Resource.java   ResourceImpl.java
ResourceProxy.java  ResourceViewer.java
SandboxMessageHandler.java  SandboxThreadGroup.java
SandboxSecurity.javaSandboxSecurityException.java
WeakRef.java WeakTable.java
WeakEntry.java   XImage.java
Error: could not find libjava.so
Error: could not find Java 2 Runtime Environment.


[ ... ]

Paul,

My guess is that it's happening when the OpenOffice build is attempting to
invoke the Java compiler.

I suggest posting this to the freebsd-java mailing list. It's an open issue
with the 1.5.0 JDK, which is what you appear to be invoking. Basically, if
you've installed the 1.5 JDK port, you can't invoke java without using its
full path. That is,

$ /usr/local/jdk1.5.0/bin/java

works fine. But

$ java

fails, producing exactly the errors you saw:

$ java
Error: could not find libjava.so
Error: could not find Java 2 Runtime Environment.


   In my case, $ java -version does work, and it properly reports the
   version info. I did try to back out the 1.5.0 version and install
   1.4.2, but ran into too many problems with the bootstrapping issue. It
   couldn't find a previous version of the required SDK. I do have the
   linux-java SDK installed. I was just hoping a symlink where oo was
   looking would be sufficient.

Someone reported this error on the freebsd-java list, and I noted that I
can reproduce it here, as well. No one has responded, so I imagine it
doesn't affect everyone. But one more voice doesn't hurt.

Note that this problem, whatever it is (and I haven't had time to dig) does
NOT affect the 1.4.2 JDK. A workaround for your immediate problem might be
to install the 1.4.2 JDK port.

-Brian

Brian Clapper, [2]http://www.clapper.org/bmc/
"A witty saying proves nothing."
-- Voltaire




   Thanks for the help. I'll repost in freebsd-java.

References

   1. mailto:[EMAIL PROTECTED]
   2. http://www.clapper.org/bmc/
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


libjava.so not found

2005-02-01 Thread Paul Horechuk
During make of openoffice-1.1
make -DWITHOUT_MOZILLA



=
Building project sandbox
=
/usr2/ports/editors/openoffice-1.1/work/sandbox/com/sun/star/lib/sandbox
mkout -- version: 1.3
Making dpj...

--
Making: ../../../../../unxfbsd.pro/misc/lib_sandbox.dpc
dmake subdmake=true  -f makefile.mk product="full" depend=t ALLDPC
--
No Dependencies
javac -classpath 
".:../../../../../unxfbsd.pro/class:/usr/local/jdk1.5.0/jre/lib/rt.jar:." 
-d ../../../../../unxfbsd.pro/class  AudioProxy.java
 
Cachable.java   ClassContext.java
ClassContextImpl.java   ClassContextProxy.java  

CodeSource.java Disposable.java   
ExecutionContext.java
Holder.javaImageProducerProxy.java JarEntry.java
   
JarInputStream.java Permission.java 

PermissionCollection.java   ProtectionDomain.java   

Resource.java   ResourceImpl.java
ResourceProxy.java  ResourceViewer.java 

SandboxMessageHandler.java  SandboxThreadGroup.java 

SandboxSecurity.javaSandboxSecurityException.java   
WeakRef.java WeakTable.java   
WeakEntry.java   XImage.java
Error: could not find libjava.so
Error: could not find Java 2 Runtime Environment.
dmake:  Error code 2, while making 
'../../../../../unxfbsd.pro/misc/lib_sandbox_dummy.java'
---* TG_SLO.MK *---

ERROR: Error 65280 occurred while 
making /usr2/ports/editors/openoffice-1.1/work/sandbox/com/sun/star/lib/sandbox
dmake:  Error code 1, while making 'instsetoo/prj/build_all'
*** Error code 255

Stop in /usr2/ports/editors/openoffice-1.1.
---* TG_SLO.MK *---


friar# locate libjava.so
/usr2/local/jdk1.5.0/jre/lib/i386/libjava.so
/usr2/local/jre1.1.8/lib/i386/green_threads/libjava.so
/usr2/local/jre1.1.8/lib/i386/green_threads/libjava.so.1.1.8


friar# uname -a
FreeBSD friar.horechuk.csolve.net 5.3-STABLE FreeBSD 5.3-STABLE #6: Sat Jan 15 
21:36:01 EST 2005

Can I symlink one of the libjava.so files to where openoffice is looking?
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: 4.9 Boot Hang when USB Devices Attached

2003-09-26 Thread Paul Horechuk
The ASUS A7A266 does NOT have the nForce2 either, but the patch
(actually two lines of inserted code for usb.c) does fix the problem.
I had to actually disable the USB in the BIOS to boot. Simply removing
the USB mouse did not work.

- Original Message - 
From: "Joe Kelsey" <[EMAIL PROTECTED]>
To: "Brandon Fosdick" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: September 26, 2003 3:06 PM
Subject: Re: 4.9 Boot Hang when USB Devices Attached


> Brandon Fosdick wrote:
> > Joe Kelsey wrote:
> >> When I upgraded to fix the OpenSSH problems, the system started
> >> hanging at boot time right after the USB/OHCI messages whenever I
had
> >> devices plugged into the USB ports (mainly a USB mouse).  Now, in
> >> order to boot, I have to unplug the mouse and wait for the system
to
> >> pass the USB part of boot before replugging.
> > There are several threads discussing this ATM. If you have an
nforce2
> > board search for the thread with the subject "fix/workaround for
usb
> > probe lockups on nForce2 mbs". Andrew Atrens posted a patch that
worked
> > for me. In the same thread Ian Dowse has offered a few other ideas
to
> > try. I haven't tried them yet.
>
> I have an ASUS A7S333 which does *not* have an nforce2 chipset.
>
> /Joe
>
>
>
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-stable
> To unsubscribe, send any mail to
"[EMAIL PROTECTED]"
>

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


X won't start

1999-10-12 Thread Paul Horechuk

Thanks for a couple of previous suggestions, but I still have the same
problem. I checked the symbolic link for X and it appeared correct, except
for the group access:

lrwxrwxr-x   1 root 12000   24 May 28 20:58 /usr/X11R6/bin/X ->
/usr/X11R6/bin/XF86_Mach64*

I recreated it as wheel.

Still no luck. FYI I get the following errors:

_X11TransSocketUNIXConnect: Can't connect: errno=2
_X11TransSocketUNIXConnect: Can't connect: errno=2
_X11TransSocketUNIXConnect: Can't connect: errno=2
_X11TransSocketUNIXConnect: Can't connect: errno=2
_X11TransSocketUNIXConnect: Can't connect: errno=2
_X11TransSocketUNIXConnect: Can't connect: errno=2

_X11SERVTransSocketCreateListener: failed to bind listener
_X11SERVTransSocketINetCreateListener:...SocketCreateListener() failed
_X11SERVTransMakeAllCOTSServerListeners: failed to create listener for tcp

fatal server error:
failed to establish all listening sockets
giving up.


xinit: no such file or directory (errno2): unable to connect to X server
xinit: No such process (errno3): Server error

These errors occur if I login as root and immediately use startx.

If I go through /stand/sysinstall, answer OK and SAVE at the various prompts
for the XF86 Configure options, then quit out, I can run startx with no
problems.



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message