Development

#3403 (undefined method sfLuceneInitializeTask::bootstrapSymfony())

You must first sign up to be able to contribute.

Ticket #3403 (closed defect: wontfix)

Opened 7 months ago

Last modified 3 months ago

undefined method sfLuceneInitializeTask::bootstrapSymfony()

Reported by: niclupien Assigned to: Carl.Vondrick
Priority: minor Milestone: plugins
Component: sfLucenePlugin Version: 1.1.0 BETA3
Keywords: Cc:
Qualification: Unreviewed

Description

Installed the plugin with symfony 1.1 and I got this error...

PHP Fatal error: Call to undefined method sfLuceneInitializeTask::bootstrapSymfony() in /var/www/html/ticavie/plugins/sfLucene/lib/task/sfLuceneBaseTask.class.php on line 23

To fix I commented the line 23 of sfLuceneBaseTask.class.php

Got another problem :

Notice: Undefined property: sfLuceneInitializeTask::$filesystem in /var/www/html/ticavie/plugins/sfLucene/lib/task/sfLuceneInitializeTask.class.php on line 59

To fix i replaced $this->filesystem by $this->getFileSystem() on line 59 and 60

And now that seems to be ok...

Change History

04/24/08 15:52:03 changed by niclupien

  • version changed from 1.0.13 to 1.1.0 BETA3.

05/13/08 20:54:37 changed by Carl.Vondrick

  • status changed from new to closed.
  • resolution set to wontfix.

sfLucene will be replaced by sfSearch for 1.1.

06/02/08 13:07:21 changed by bergstorm

i got the same pb with sfLucenePlugin11 and symfony 1.1 RC1 i extract the 9407 svn revision of the plugin project

Fatal error: Call to undefined method sfLuceneInitializeTask::bootstrapSymfony() in /home/.../plugins/sfLucenePlugin/lib/task/sfLuceneBaseTask.class.php on line 23

seems strange, isn't it?

06/02/08 13:07:31 changed by bergstorm

  • status changed from closed to reopened.
  • resolution deleted.

06/03/08 03:15:49 changed by Carl.Vondrick

  • status changed from reopened to closed.
  • resolution set to wontfix.

sfLucene is deprecated in 1.1 in favor of sfSearch. Please see http://svn.symfony-project.com/plugins/sfSearchPlugin/trunk/doc/00%20-%20Quick%20Start.txt for a quick start guide. sfSearch is currently pre-alpha software, so use at your own risk.

08/20/08 12:02:01 changed by oncletom

Same problem here.

Thanks @niclupien for the tip.