Moodle 2.8.3 Log out Problems - logout

Recently my school upgraded to Moodle 2.8.3 and now I can't figure out how to log out. This is really bugging me. Please help!

Click on your user icon in the top-right corner of the page and then select 'Log out' from the drop down.
This assumes your school hasn't installed a custom theme that does something different with the menu.

Related

Unable to uninstall github for mac

Github for mac is completely not working. It just brings up an xcode window with a 9 month old file in text editor.
So I tried to uninstall it using this gist:
https://gist.github.com/naomik/11245234
but it did not help: every time I go to a github link the same xcode useless window comes up.
When I click on Launch Application then the empty xcode window comes up.
If I click on Do Nothing then .. well nothing happens (it does not navigate to the github page !!)
Help needed badly on this.
Did you try to uninstall with CleanMyMac? I think it should clear all depending files so i think it can help.

Why would NetBeans not display correctly file names or other text in dialogs?

While trying to make a new project in NetBeans 7.2.1 I've noticed that in the "New Project" dialog, after I select a category (Java, Java FX, Java Web, etc), the project types only show up as icons, the text becoming visible only after I click an icon.
Any idea of what could have caused this behavior?
I could post an image but I'm a new user and don't have enough points for that yet.
Here's a link, though: http://www.flickr.com/photos/67586865#N08/8436549191/
Later edit: I've noticed this in other dialogs, too.
I just deactivated some of my plugins including Dark Nimbus Theme, and
It seems the graphical card driver had some problems, and have figured this out after strange behaviors appeared in other applications, too. After re-installing the driver everything went smoothly.

Umbraco - Unable to navigate to sections other than Content after upgrade to 4.5.2

I've tried posting this on the Umbraco forums to no avail. Hoping to find some help here.
I thought I upgraded successfully from 4.0.4.2 to 4.5.2 (on my way to 4.8...) as I received no errors and everything seemed to go smoothly. However, in the backoffice, when I click on any section other than Content, I get redirected back to Content. I can manually reach each section by typing in the name of it after the # sign like: #media, but as soon as I click on a tree item, it redirects me back to Content. Any ideas would be appreciated.
2 thoughts:
You're cacheing some of the old javascript in your browser. Try clearing your cache. IE can be stubborn in this regard; preferably try in Chrome.
Personally, if your site is working under 4.5.2, I wouldn't sweat the back office issue and just continue with the upgrade to 4.8.1. There will likely be new problems to solve there anyway :) and the backoffice issue may go away.
Updating the icons via the following script fixed this problem. Links must run off the appIcon field. Not sure why this is not executed when the database is updated via the 4.5.2 upgrade.
update umbracoApp
set appIcon = '.tray' + appAlias
where appAlias IN ('content','media','users','settings','developer','member')

pydev will not install in Eclipse 3.72

New user w/3.72 on Ubuntu. I'm trying to follow tutorials that say go into Help > Install New Software. Then add, then type in for location pydev.org/updates or try update-production-pydev.s3.amazonaws.com/pydev/updates/site.xml to get option to install pydev to eclipse.
I try but nothing happens after I hit OK in the entry/dialop add box. Is there something else to do - nothing happens, no checkboxes appear in the text area below, I see some options in the large text area?
I have a fast connection. Is there something I'm missing? Seems it should be easy. Nothing happens.
Thanks
I had this problem as well, and fixed it by unchecking "Contact all update sites during install to find required software" on the bottom of the Install window.
/Edit... I used http://pydev.org/updates for the location

tinyMCE editor bar not showing up

I'm running Plone 4.1.4 and when I try to edit a text area that used to display the tinyMCE editor all I get is a dialog box listing a dict of "valid elements". I installed the kupu editor and that works fine, but I prefer tinyMCE. Has anyone run in to this issue? Any help would be greatly appreciated.
Browser and version? IE 9 has TinyMCE issues, and requires you to use a development release.
To get around it I had to install a version from github. If you have mr.developer, use:
Products.TinyMCE = git https://github.com/plone/Products.TinyMCE.git branch=GSOC-3.4.x
I have come across this problem as well. In my case I updated Plone 4.1.2 to Plone 4.1.4. The rich widget will not show the TinyMCE editor when the content type has just been added. But after saving the content type and then editing, TinyMCE would appear as expected.
The weird thing is that if you add a new Plone instance and then activate and add your custom AT content type. TinyMCE would render fine on your text fields.
A work around that seemed to solve the issue is to go to portal_setup and on the upgrade tab, select Products.TinyMCE:TinyMCE to upgrade. It would show that the profiles (version 3) on the ZODB and the filesystem are in sync. You can downgrade by clicking on "show old upgrades" and running upgrade profile 1.1->2. This worked for me but please try this on a development instance.
This looks exactly like a problem I had a few days ago. Are you using IE7 or below?
Though I don't know if this is the right way to go (more experienced devs, please advise), this is what I did:
(Assuming a windows box... )
Stopped the plone services
located the file on the filesystem called tiny_mce_init.js (in my case c:\Plone41\eggs\products.tinymce-1.2.10-py2.6.egg\Products\TinyMCE\skins\tinymce\tiny_mce_init.js)
go to line 93 (in my case this contains:
media_strict: false,
remove the comma resulting in media_strict: false
save the file
restart the services
Looks at Thariama's answer here.
I had the same problem (with IE and FF). It looked like the archtype installation was the problem.
After changing the order unter "ZMI->portal_skins->Sunburst Theme" (putting tinymce above archetypes), TinyMCE worked.
(http://plone.293351.n2.nabble.com/Tinymce-not-working-after-custom-type-is-installed-td7566873.html)