Ask Your Question

jonathan's profile - activity

2013-09-05 13:52:51 +0200 received badge  Nice Answer (source)
2013-08-30 11:12:53 +0200 commented question 3d Plotting not working when using server pool

This may be tough one. The issue relates to where the scratch files are put by the server, how the location is passed to the browser and restrictions on cross server scripting. This may get better as I get the javascript version of 3-D plotting working, but I will also keep it in mind and look for other solutions. No promises of rapid progress, the javascript plotting is higher priority.

2013-04-23 12:50:51 +0200 received badge  Teacher (source)
2013-04-23 10:02:24 +0200 answered a question Safari update breaking Java in Sage?

At this point all I can tell you is that Apple keeps changing exactly how Safari handles Java applets. Sometimes it works, sometimes it doesn't. Things haven't been stable long enough for me to figure out what is going on. We are working on a live non-java 3-D viewer that I hope to have working in Sage this summer. Java is still faster and more responsive, but Apple and Microsoft seem to be trying hard to squash Java. I have not got a definite workaround at this point. You can try Firefox. What I know works is Chromium and FireFox under Linux, where you can actually install Java without the OS trying to override your settings. You can also try adjusting the security level to medium in the Java control panel. Some have had success with that.

Jonathan

2013-01-14 12:49:07 +0200 received badge  Editor (source)
2013-01-14 12:48:09 +0200 answered a question How to migrate user accounts to new Sage notebook server?

The files are on two servers without a shared disk space so cp will not work. Rsync might work, but the solution I found is to tar the .sage directory, which preserves the symlinks. Then I copied the .tar file to the new server. Then I untarred the file on the new server.

#on old server:
        tar -c .sage -f .sage.tar
#copy to the new server (I used sftp).
#on new server in the root of the user where sage will run:
         tar -xf .sage.tar

Thanks, Jonathan

2013-01-08 11:35:38 +0200 asked a question How to migrate user accounts to new Sage notebook server?

Does anybody have a script to migrate a bunch of notebook users to a new sage notebook server...I need to replace my server hardware. I've installed Sage 5.5 on the new hardware and thought I would just move the .sage directory from my old server, but have had no luck with that. There seem to be path issues. The new server does not expect to find the user files already in __store__.

I would like to maintain passwords as well. Thus I think I need the user.pickle, but copying this also causes errors.

The server I am trying to migrate from was running 5.1, but with the Flask notebook.

I haven't yet tried the process of building all the intermediate versions and stepping through them. I also think I may have the same problem, as I am unwilling to try it in place on the server that is still working.