500 Layout edit_associations non trovato

Started by tulinux, 21 July 2014, 10:45:36

Previous topic - Next topic
A financial contribution is greatly appreciated as a support, to help us to keep live the project.
If you like this project you can donate some piece of BitCoin to this address: bc1qy5tgq6tvrckac2a57unxvqcnxamrvhduve9sj9

dpmimmo

Ciao Federica, Ho provato a disabilitare il plugin nativo di joomla "System - Language Filter" e la creazione e modifica delle categorie è tornata a funzionare. poi ho riabilitato il plugin, visto che il mio sito è in multingua.
Ancora una piccola cosa. il plugin plg_jcomment_com_abook_3_0_0.tgz non si installa in quanto joomla non trova il file di setup xml

A financial contribution is greatly appreciated as a support, to help us to keep live the project.
If you like this project you can donate some piece of BitCoin to this address: bc1qy5tgq6tvrckac2a57unxvqcnxamrvhduve9sj9

federica

Grazie a tutti per avermi aiutato a capire il problema, nella prossima versione sistemerò definitivamente il problema. Per correggere l'errore è sufficiente creare il file:
administrator/components/com_abook/views/category/tmpl/edit_associations.php
e incollare questo codice al suo interno


defined('_JEXEC') or die;

echo JLayoutHelper::render('joomla.edit.associations', $this);



Many thanks at all for helping me to understand the problem, I will fix the bug in the next version. If you want to fix the bug you have to create the file:
administrator/components/com_abook/views/category/tmpl/edit_associations.php
then copy and paste the following text inside the file


defined('_JEXEC') or die;

echo JLayoutHelper::render('joomla.edit.associations', $this);



Quote from: dpmimmo on 12 November 2014, 16:53:08
Ancora una piccola cosa. il plugin plg_jcomment_com_abook_3_0_0.tgz non si installa in quanto joomla non trova il file di setup xml
Visto che si tratta di un problema diverso, per favore, apri un nuovo topic.
Al mondo ci sono 10 tipi di persone, quelli che hanno capito il codice binario e quelli che non l'hanno capito.
Informatizzati [url="https://informatizzati.org"]https://informatizzati.org[/url]
Stacca la spina [url="https://disconnessi.org"]https://disconnessi.org[/url]

TRUEMAKER

Quote from: federica on 07 November 2014, 19:28:06
Igor,
thank you for your tests.
Quote from: TRUEMAKER on 06 November 2014, 12:06:07
(1) About js error. That library js FILE only in your component subdir and error in your php.
I fixed it in php. Link in source ok. Error log about js clear.
Can you tell me how to fixed the js bug?

Hi Federica

\administrator\components\com_abook\assets\javascript\overlib_mini.js

but in your PHP
\administrator\components\com_abook\views\cpanel\view.html.php

$document->addScript(DS.'includes'.DS.'js'.DS.'overlib_mini.js');

This is wrong way. Joomla 3.3.6 have not that JS.

WBR
Igor

federica

Thank you Igor,
I will check the code, perhaps that file is no longer needed.
Al mondo ci sono 10 tipi di persone, quelli che hanno capito il codice binario e quelli che non l'hanno capito.
Informatizzati [url="https://informatizzati.org"]https://informatizzati.org[/url]
Stacca la spina [url="https://disconnessi.org"]https://disconnessi.org[/url]

A financial contribution is greatly appreciated as a support, to help us to keep live the project.
If you like this project you can donate some piece of BitCoin to this address: bc1qy5tgq6tvrckac2a57unxvqcnxamrvhduve9sj9

xega

I have created a new file: edit_associations.php that contains the following code:

<?php
defined
('_JEXEC') or die;

echo 
JLayoutHelper::render('joomla.edit.associations'$this);
?>


Uploaded it into the folder "administrator/components/com_abook/views/categories/tmpl"

And I still get the error "500  Layout edit_associations not found" when I try to create a new category.  What am I missing?

federica

xega, you have to upload the file in to this path:
administrator/components/com_abook/views/category/tmpl/edit_associations.php
Al mondo ci sono 10 tipi di persone, quelli che hanno capito il codice binario e quelli che non l'hanno capito.
Informatizzati [url="https://informatizzati.org"]https://informatizzati.org[/url]
Stacca la spina [url="https://disconnessi.org"]https://disconnessi.org[/url]

xega

Ah I see.  I uploaded it to the subfolder categories and not category.  Thanks!