in2code-de / publications

Follower of EXT:bib to show publications in TYPO3. Im- and export of bibtext and xml files.
https://www.in2code.de/agentur/typo3-extensions/publications/
11 stars 16 forks source link

How to install RenanBr/bibtex #26

Closed karliwalti closed 3 years ago

karliwalti commented 3 years ago

Trying to install the plugin on a fresh typo3 installation. Plugin is installed over the extension manager (v 2.3.0)

When using the bib importer the following error

Oops, an error occurred! Class 'RenanBr\BibTexParser\Parser' not found

Presumably also this package should be installed: https://github.com/renanbr/bibtex-parser

Could you elaborate on this in the manual for the installation?

einpraegsam commented 3 years ago

Please look at https://github.com/in2code-de/publications#technical-requirements - this extension needs to be installed in composer mode only. In classic mode third party packages are not loaded.

eBornstein commented 2 years ago

I just had the same problem, local is composer and live unfortunately not. The dirty way was to copy the renarn directory from the vendor (local installation) to typo3conf/ext (live installation) and create an ext_emconf.php.

the important part

    'autoload' => [
        'psr-4' => [
            'RenanBr\\BibTexParser\\' => 'bibtex-parser/src/'
        ]
    ]

After installing the renan extension in backend (TYPO3 10.4.21), the import is working.