To fix just replace this:
end = models.DateTimeField(default=datetime.date.today(), blank=True)
with this:
end = models.DateTimeField(default=datetime.datetime.now(), blank=True)
To fix just replace this:
end = models.DateTimeField(default=datetime.date.today(), blank=True)
with this:
end = models.DateTimeField(default=datetime.datetime.now(), blank=True)
Before installing PIL edit the setup.py and add this line
add_directory(library_dirs, "/usr/lib/i386-linux-gnu")
before line 214
add_directory(library_dirs, "/usr/lib")
You might already know the new page speed test provided by Google, so I did a quick test with the current public campus, from Chamilo and Dokeos here are the results:
Posted in Tecnologia
Tagged chamilo, chamilo is faster, chamilo vs dokeos, Dokeos, performance
Just edit or create your hgrc file in your mercurial repository
sudo vim .hg/hgrc
[ui]
merge = meld
Excelente resumen de lo que significa Software Libre.
Replace if (isset($data[$model->alias][$this->fields[‘username’]]) && isset($data[$model->alias][$this->fields[‘password’]])) {
with
if (isset($data[$model->alias][$this->fields[‘username’]]) && !empty($data[$model->alias][$this->fields[‘password’]])) {
In the cake/libs/controller/components/auth.php file
Go to the wp-content/plugins/wordbb/wordbb.php line 139
Remove the
if(empty($prefix))
$prefix=’mybb_’;
And that’s it!
The problem is your db prefix this plugin assumes that everybody have a “mybb_” db prefix
In your view you just do something like this:
If you save an object in a session and you want to use it in another page you will receive that error.
To avoid this the class declaration has to be available before you call session_start().