Friday, June 18, 2010

Joomla - Unable to edit article error stdClass::onDisplay()

In Joomla most probably after upgradation users will encounter an error, that is they cannot edit articles or sections.

You can fix this by a simple trick, do the steps as follows.


Go to root directory, libraries\joomla\html\editor.php

In between lines 260-270 replace the given code

Code:
// Try to authenticate
$result[] = $plugin->onDisplay($editor);


with


Code:
// Try to authenticate
if (method_exists($plugin, 'onDisplay')) {
$result[] = $plugin->onDisplay($editor);
}

Tuesday, June 15, 2010

Microsoft Excel - Adding a line break to a cell

n most word applications, pressing Enter moves the cursor to the next line. This is not the case in Excel, which at times seems to have a mind of its own. When you press Enter in Excel, it does not add a line break within a cell. Instead, it places the cursor in the cell below.

If you’re rather new to Excel, this can become a bit of an annoyance as you try to enter in data. The trick to this is that if you want to add a line break within a cell, press Alt + Enter, instead of just Enter.

Monday, June 14, 2010

Steps for creating a course in Docebo LMS

DOCEBO - Learning Management System - How to create a course ?

This is a bit tricky part for a new docebo user.

First you need to create a course.

   1. Login as admin and go into the Admin Area.
   2. From the top menu, go Elearning -> Elearning -> Course Management
   3. Give your new course a code and a name and for the moment leave everything else as is.
   4. Click on Create at the bottom right of the page (you’ll need to scroll down).


To be able to add content to the course, you’ll need to attribute yourself as a user
.

   1. Click on the symbol which pops up with the text “Enroll users in this course” (a little teacher with a green plus sign).
   2. Choose a  user who can be the lecturer or teacher to the course then click Confirm.
   3. Choose Instructor for the selected user and click Subscribe User.



Now that the selected user has became the teacher/instructor of the course,

   1. Login as the instructor/teacher user
   2. Select the course you just created.
   3. Click Enter or Subscribe if you have not subscribed.
   4. You can see the Teacher Area tab is now visible there on the left.
   5. Click Admin Learning Object
   6. Start adding your content

Docebo - course_autoregistration error [FIX]

In docebo LMS (super admin) when you went in User Area Module and activate "Add Course" module. Then a student went in, able to see Add Course at the top menu. Once he click the Add Course, a message shows up

You can't access/lms/course/public/course_autoregistration/view

The fix is,

In order to fix this problem comment some lines in the page

doceboLms/modules/course_autoregistration/course_autoregistration.php;

just change the line 20 and 47 from:

checkPerm('view');

to:

//checkPerm('view');


Done.

Office 2010 Beta - The language of this installation package is not supported by your system

When Installing Office 2010 Beta some of you may have encountered this error message "The language of this installation package is not supported by your system".

If you extract the files using 7-Zip or WinRAR, the files
are extracted in the root of the specified folder. You will face this
issue when running the setup from there. If you want to run the setup
from the extracted files, then do ensure that the folder structure is
retained. Without the folder structure, you will continue to face this
issue.

The solution is to install from the downloaded file itself without extracting the files manually.

FIFA 2010 South Africa - Calendar

Guys, check it out the new animated schedule for Fifa 2010 @ South Africa

http://www.marca.com/deporte/futbol/mundial/sudafrica-2010/calendario-english.html

Popular Posts