Back to top

Visualizza post

Questa sezione ti permette di visualizzare tutti i post inviati da questo utente. N.B: puoi vedere solo i post relativi alle aree dove hai l'accesso.


Post - Smilo

Pagine: [1]
1
Joomla! 1.5 / Re:Impossibile pubblicare articoli/moduli
« il: 01 Lug 2009, 19:03:05 »
Ancora ad oggi non sono riuscito a risolvere il problema.....

Ma può essere che questo problema ce l'ho solo io ?? maahhhhh  ???

2
ciao
Citazione
Installando un nuovo template di una estenzione commerciale che ovviemente non posso nominare mi è venuto fuori un errore cioè:
giustamente come hai detto  tu  unica regola nel forum non si parla di template ne componenti commerciali , visto che paghi  almeno un minimo di assistenza lo devono fornire .


1) Allora conosco benissimo le regole del forum, per questo ho anticipato il fatto del template commerciale, ma non l'ho mica nominato.

2) Ho già controllato sul forum del produttore e non c'è una mazza.

3) Stai dicendo tu che l'ho pagato.

4) L'errore è su un file di joomla, non del template, quindi io ho chiesto solo un aiuto sul codice.

Ringrazio tutti anticipatamente...

3
Ciao ragazzi...
Installando un nuovo template su mi è venuto fuori un errore cioè:

Codice: [Seleziona]
Parse error: syntax error, unexpected T_LNUMBER in C:\wamp\www\2\libraries\joomla\document\html\html.php(277) : eval()'d code on line 1
ho dato uno sguardo sul forum trovando una discussione che parlava dello stesso errore che è stato risolto http://forum.joomla.it/index.php/topic,60751.0.html , ma nonostante ciò non sono riuscito a risolvere.

Nella riga 277 si trova questa stringa: 
Codice: [Seleziona]
return eval($str);
adesso inserisco tutto il codice sperando che qualcuno mi possa aiutare.
Un saluto tutta la community di Joomla  ;)

Codice: [Seleziona]
<?php
/**
* @version $Id: html.php 10787 2008-08-24 07:45:36Z pasamio $
* @package Joomla.Framework
* @subpackage Document
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();

jimport('joomla.application.module.helper');

/**
 * DocumentHTML class, provides an easy interface to parse and display an html document
 *
 * @package Joomla.Framework
 * @subpackage Document
 * @since 1.5
 */

class JDocumentHTML extends JDocument
{
 /**
 * Array of Header <link> tags
 *
 * @var  array
 * @access  private
 */
var $_links = array();

/**
 * Array of custom tags
 *
 * @var  string
 * @access  private
 */
var $_custom = array();


/**
 * Class constructor
 *
 * @access protected
 * @param array $options Associative array of options
 */
function __construct($options = array())
{
parent::__construct($options);

//set document type
$this->_type 'html';

//set mime type
$this->_mime 'text/html';

//set default document metadata
 $this->setMetaData('Content-Type'$this->_mime '; charset=' $this->_charset true );
 $this->setMetaData('robots''index, follow' );
}

/**
 * Get the html document head data
 *
 * @access public
 * @return array The document head data in array form
 */
function getHeadData()
{
$data = array();
$data['title'] $this->title;
$data['description']= $this->description;
$data['link'] $this->link;
$data['metaTags'] $this->_metaTags;
$data['links'] $this->_links;
$data['styleSheets']= $this->_styleSheets;
$data['style'] $this->_style;
$data['scripts'] $this->_scripts;
$data['script'] $this->_script;
$data['custom'] $this->_custom;
return $data;
}

/**
 * Set the html document head data
 *
 * @access public
 * @param array $data The document head data in array form
 */
function setHeadData($data)
{
$this->title = (isset($data['title'])) ? $data['title'] : $this->title;
$this->description = (isset($data['description'])) ? $data['description'] : $this->description;
$this->link = (isset($data['link'])) ? $data['link'] : $this->link;
$this->_metaTags = (isset($data['metaTags'])) ? $data['metaTags'] : $this->_metaTags;
$this->_links = (isset($data['links'])) ? $data['links'] : $this->_links;
$this->_styleSheets = (isset($data['styleSheets'])) ? $data['styleSheets'] : $this->_styleSheets;
$this->_style = (isset($data['style'])) ? $data['style'] : $this->_style;
$this->_scripts = (isset($data['scripts'])) ? $data['scripts'] : $this->_scripts;
$this->_script = (isset($data['script'])) ? $data['script'] : $this->_script;
$this->_custom = (isset($data['custom'])) ? $data['custom'] : $this->_custom;
}

 /**
 * Adds <link> tags to the head of the document
 *
 * <p>$relType defaults to 'rel' as it is the most common relation type used.
 * ('rev' refers to reverse relation, 'rel' indicates normal, forward relation.)
 * Typical tag: <link href="index.php" rel="Start"></p>
 *
 * @access   public
 * @param string  $href The link that is being related.
 * @param string  $relation   Relation of link.
 * @param string  $relType Relation type attribute.  Either rel or rev (default: 'rel').
 * @param array   $attributes Associative array of remaining attributes.
 * @return   void
 */
function addHeadLink($href$relation$relType 'rel'$attribs = array())
{
$attribs JArrayHelper::toString($attribs);
$generatedTag '<link href="'.$href.'" '.$relType.'="'.$relation.'" '.$attribs;
$this->_links[] = $generatedTag;
}

 /**
 * Adds a shortcut icon (favicon)
 *
 * <p>This adds a link to the icon shown in the favorites list or on
 * the left of the url in the address bar. Some browsers display
 * it on the tab, as well.</p>
 *
 * @param  string  $href The link that is being related.
 * @param  string  $type File type
 * @param  string  $relation Relation of link
 * @access public
 */
function addFavicon($href$type 'image/x-icon'$relation 'shortcut icon')
{
$href str_replace'\\''/'$href );
$this->_links[] = '<link href="'.$href.'" rel="'.$relation.'" type="'.$type.'"';
}

/**
 * Adds a custom html string to the head block
 *
 * @param string The html to add to the head
 * @access   public
 * @return   void
 */

function addCustomTag$html )
{
$this->_custom[] = trim$html );
}

/**
 * Get the contents of a document include
 *
 * @access public
 * @param string  $type The type of renderer
 * @param string  $name  The name of the element to render
 * @param array    $attribs Associative array of remaining attributes.
 * @return  The output of the renderer
 */
function getBuffer($type null$name null$attribs = array())
{
$result null;

// If no type is specified, return the whole buffer
if ($type === null) {
return $this->_buffer;
}

if(isset($this->_buffer[$type][$name])) {
$result $this->_buffer[$type][$name];
}

// If the buffer has been explicitly turned off don't display or attempt to render
if ($result === false) {
return null;
}

if( $renderer =& $this->loadRenderer$type )) {
$result $renderer->render($name$attribs$result);
}

return $result;
}

/**
 * Set the contents a document include
 *
 * @access public
 * @param string  $type The type of renderer
 * @param string  $name oke The name of the element to render
 * @param string  $content The content to be set in the buffer
 */
function setBuffer($contents$type$name null)
{
$this->_buffer[$type][$name] = $contents;
}

/**
 * Outputs the template to the browser.
 *
 * @access public
 * @param boolean  $cache If true, cache the output
 * @param array $params Associative array of attributes
 * @return  The rendered data
 */
function render$caching false$params = array())
{
// check
$directory = isset($params['directory']) ? $params['directory'] : 'templates';
$template JFilterInput::clean($params['template'], 'cmd');
$file JFilterInput::clean($params['file'], 'cmd');

if ( !file_exists$directory.DS.$template.DS.$file) ) {
$template 'system';
}

// Parse the template INI file if it exists for parameters and insert
// them into the template.
if (is_readable$directory.DS.$template.DS.'params.ini' ) )
{
$content file_get_contents($directory.DS.$template.DS.'params.ini');
$params = new JParameter($content);
}

// Load the language file for the template
$lang =& JFactory::getLanguage();
$lang->load'tpl_'.$template );

// Assign the variables
$this->template $template;
$this->baseurl  JURI::base(true);
$this->params   $params;

// load
$data $this->_loadTemplate($directory.DS.$template$file);

// parse
$data $this->_parseTemplate($data);

//output
parent::render();
return $data;
}

/**
 * Count the modules based on the given condition
 *
 * @access public
 * @param  string  $condition The condition to use
 * @return integer  Number of modules found
 */
function countModules($condition)
{
$result '';

$words explode(' '$condition);
for($i 0$i count($words); $i+=2)
{
// odd parts (modules)
$name strtolower($words[$i]);
$words[$i] = ((isset($this->_buffer['modules'][$name])) && ($this->_buffer['modules'][$name] === false)) ? count(JModuleHelper::getModules($name));
}

$str 'return '.implode(' '$words).';';

return eval($str);
}

        
/**             
         * Count the number of child menu items
         *              
         * @access public
         * @return integer Number of child menu items
         */
        
function countMenuChildren() {
                static 
$children;
                if(!isset(
$children)) {
                        
$dbo =& JFactory::getDBO();
                        
$menu =& JSite::getMenu();
                        
$where = Array();
                        
$active $menu->getActive();
                        if(
$active) {
$where[] = 'parent = ' $active->id;
$where[] = 'published = 1';
                        
$dbo->setQuery('SELECT COUNT(*) FROM #__menu WHERE 'implode(' AND '$where));
                        
$children $dbo->loadResult(); 
                
} else {
$children 0;
}
}
                return 
$children;
        }

/**
 * Load a template file
 *
 * @param string  $template The name of the template
 * @param string  $filename The actual filename
 * @return string The contents of the template
 */
function _loadTemplate($directory$filename)
{
global $mainframe$option;

if ($mainframe->getCfg('legacy'))
{
global $task$_VERSION$my$cur_template$database$acl$Itemid;

//For backwards compatibility extract the config vars as globals
$registry =& JFactory::getConfig();
foreach (get_object_vars($registry->toObject()) as $k => $v) {
$name 'mosConfig_'.$k;
$$name $v;
}
}

$contents '';

//Check to see if we have a valid template file
if ( file_exists$directory.DS.$filename ) )
{
//store the file path
$this->_file $directory.DS.$filename;

//get the file content
ob_start();
require_once $directory.DS.$filename;
$contents ob_get_contents();
ob_end_clean();
}

// Try to find a favicon by checking the template and root folder
$path $directory DS;
$dirs = array( $pathJPATH_BASE DS );
foreach ($dirs as $dir )
{
$icon =   $dir 'favicon.ico';
if (file_exists$icon ))
{
$path str_replaceJPATH_BASE DS''$dir );
$path str_replace'\\''/'$path );
$this->addFaviconJURI::base(true).'/'.$path 'favicon.ico' );
break;
}
}

return $contents;
}

/**
 * Parse a document template
 *
 * @access public
 * @param string  $data The data too parse
 * @return The parsed contents of the template
 */
function _parseTemplate($data)
{
$replace = array();
$matches = array();
if(preg_match_all('#<jdoc:include\ type="([^"]+)" (.*)\/>#iU'$data$matches))
{
$matches[0] = array_reverse($matches[0]);
$matches[1] = array_reverse($matches[1]);
$matches[2] = array_reverse($matches[2]);

$count count($matches[1]);

for($i 0$i $count$i++)
{
$attribs JUtility::parseAttributes$matches[2][$i] );
$type  $matches[1][$i];

$name  = isset($attribs['name']) ? $attribs['name'] : null;
$replace[$i] = $this->getBuffer($type$name$attribs);
}

$data str_replace($matches[0], $replace$data);
}

return $data;
}
}

4
Joomla! 1.5 / Re: Impossibile pubblicare articoli/moduli
« il: 16 Mar 2009, 18:39:50 »
Citazione
quindi, trovando oltre 1 Gb da verificare supera i 120 secondi impostati di Timeout

il Timeout di chi?
joomla non ha un timeout che io sappia..



inoltre "FOTO" non è una cartella di joomla che io sappia, ne dei componenti che posso ricordare, spostala nella root e fanne due o anche tre quattro..



In Pratica nella cartella "FOTO" all'interno c'è un'istallazone di joomla 1.15b con all'interno la zoom media gallery e tutte le gallerie fotografiche, ho adottato questa soluzione in quanto la zoom media gallery native x j 1.5 è a pagamento, e quella in legacy va na chiavica.
E ho condiviso gli utenti delle 2 installazione con un "Vista" nel Database.

Per quanto riguarda sto "timeout" sarà del server e loro danno la colpa a joomla, come posso risolvere questo problema, non riesco piu' a far nulla  ???

5
Joomla! 1.5 / Impossibile pubblicare articoli/moduli
« il: 16 Mar 2009, 17:44:10 »
Salve Ragazzi,
e circa 1 settimana che sto avendo problemi con il mio joomla 1.5.
In pratica dal pannello amministrativo, mi permette di accedere all'interno degli articoli o moduli, ma non mi permette ne la modifica, ne la pubblicazioni di nuovi moduli/articoli, dandomi come errore "500 internal server error" avevo pensato che fosse un problema di permessi, ho contattato il mio host (sgaragnao) per chiedergli spiegazioni e il ripristino dei permessi ma mi hanno risposto così:

Citazione
Gentile Cliente,

in merito alla sua segnalazione abbiamo effettuato le opportune verifiche riscontrando che il problema è causato dalle cartelle "images" e "media" che sommate occupano circa 1.7 GB. Le stesse cartelle sotto la folder "FOTO", invece, occupano oltre 4 Gb.

Per come è sviluppato il Cms Joomla quando si va in modifica di un Articolo o similare esegue il check di queste due tabelle controllando tutti i file e, quindi, trovando oltre 1 Gb da verificare supera i 120 secondi impostati di Timeout generando l'errore "500 Internal Server Error".

Può verificare personalmente quanto affermato rinominando le cartelle indicate e riprovando l'edit di un Articolo.

Purtroppo non vi è una soluzione a tale problematica in quanto, come detto, dipende da come è stato sviluppato l'applicativo.

La invito pertanto a fare riferimento al Sito Madre dell'applicazione segnalando la problematica e verificando se sono disponibili soluzioni/patch a questa situazione.

Resto a disposizione per eventuali chiarimenti.

Cordiali Saluti

Effettivamente le cartelle sono un po grandi in quanto contengono un sacco di foto, ma se fosse veramente questo il problema, come posso risolverlo ??

Ringrazio tutti anticipatamente.

6


P.S. Stavo notando che nel sito 2 cioè quello in cui al db ho fatto le "viste" dal lato front-end non ci sono problemi, in quanto tutti gli utenti possono accedere tranquillamente, dal lato amministrativo back-end non mi riconosce + come super-admin e non mi fa accedere.... sto cercando di capire il perchè...  ???
Citazione
devi aver combinato qualcosa, io non ho mai registrato problemi  :P

Allora, nel condividere gli utenti di 2 siti fatti con joomla 1.5 va tutto perfetto, ma a me interessava condividere gli utenti da un sito joomla 1.5  a uno joomla 1.0.15b , creando le "viste" sul db 1.5, però nel sito fatto con joomla 1.0.15b dove ho cancellato le 3 tabelle, dal lato front-end per gli utenti registrati non vi è nessun problema, ma il problema nasce per gli amministratori, in quanto come admin lato fron-end non mi permette di modificare gli articoli ecc, invece lato back-end non mi fa accedere proprio  ??? ???

7
Odino Grazie 1000 per la guida, l'ho appena provata è funziona benissimo.... volevo solo segnalare che nella pubblicazione della stessa c'è stato un piccolo errore, è stato digitato 2 volte il prefisso delle tabelle del database "jos_" .
Mi sembrava giusto comunicarlo in quanto a molti utenti potrebbe servire.


Saluti, Smilo.

P.S. Stavo notando che nel sito 2 cioè quello in cui al db ho fatto le "viste" dal lato front-end non ci sono problemi, in quanto tutti gli utenti possono accedere tranquillamente, dal lato amministrativo back-end non mi riconosce + come super-admin e non mi fa accedere.... sto cercando di capire il perchè...  ???

8
Gestione utenti e community / Re: community builder
« il: 17 Giu 2008, 18:18:20 »
Ciao Dev+,
se può interessarti il modulo che uso io per gli utenti online puoi trovarlo QUI http://www.software4joomla.com/index.php?option=com_docman&Itemid=48
se vuoi vedere il risultato clicca sul mio sito
www.camporaweb.it

9
Sviluppo / Richiamare foto profilo - Smo-Ajax_Shoutbox
« il: 17 Giu 2008, 14:55:59 »
Salve a tutti,
Vorrei richiamare la foto presente nel profilo di CB e farla visualizzare all'interno della SMO-AJAX-SHOUTBOX, ma non riesco a modificare il codice, avevo pensato anche magari di prendere una stringa di codice del modulo UTenti OnLine, qualcuno può darmi una mano ?
Se non sbaglio la parte di codice da modificare dovrebbe essere questa.....
Cmq allego la ChatBox se qualcuno può aiutarmi.
Grazie a tutti.

Codice: [Seleziona]
//inserts the new content into the page
function insertNewContent(liName,liText,lastResponse, liUrl, liId) {
    response = document.getElementById("responseTime");
    response.replaceChild(document.createTextNode(lastResponse), response.firstChild);
    insertO = document.getElementById("outputList");
    oLi = document.createElement('li');
    oLi.setAttribute('id','comment-new'+liId);

    oSpan = document.createElement('span');
    oSpan.setAttribute('class','name');
   
    oName = document.createTextNode(liName);
   
    var sVet = liUrl.split("|");
    oIMG = document.createElement('img');
    oIMG.src = "images/comprofiler/tn" + sVet[1];
    oSpan.appendChild(oIMG);
    if (liUrl != "http://" && liUrl != '') {
        oURL = document.createElement('a');
        oURL.href = sVet[0].replace(/amp;/g, "");
        oURL.appendChild(oName);
    } else {
        oURL = oName;
    }
   
    oSpan.appendChild(oURL);
    oSpan.appendChild(document.createTextNode(' : '));
    oLi.appendChild(oSpan);
    oLi.innerHTML += jal_apply_filters(liText);
    insertO.insertBefore(oLi, insertO.firstChild);
    Fat.fade_element("comment-new"+liId, 30, <?php echo stripslashes(shoutbox_fade_length); ?>, "#<?php echo stripslashes(shoutbox_fade_from); ?>", "#<?php echo stripslashes(shoutbox_fade_to); ?>");
}
<?
if(shoutbox_use_sound && !shoutbox_use_send_sound)
    $function = "sendChatText";
else
    $function = "receiveChatText";
?>   

[allegato eliminato da un amministratore]

10
Gallerie di immagini / Slimbox - CB - Profile gallery
« il: 29 Mar 2008, 19:22:55 »
Salve,
vorrei inserire slimbox x la visualizzazione delle foto del profilo di CB cioè profile gallery, in modo tale che ogni utente che inserisce le proprie foto, le visualizzerà con slimbox, ma non riesco a capire dove devo inserire lo script.
qualcuno può spiegarmi un po come dovrei fare.
grazie anticipatamente...

11
Joomla! 1.5 / Re: woki
« il: 28 Mar 2008, 04:10:54 »
Devi scaricarti il modulo per poterlo integrare:

http://fedeit.netsons.org/component/option,com_docman/task,doc_details/Itemid,100003/gid,56/

Installa il modulo e poi inserisci i 2 codici, non tutto lo script che ti ha dato woki.com.

 

12
Joomla! 1.5 / Re: User list... o qualcosa di simile
« il: 24 Mar 2008, 22:25:56 »
Ciao io uso S4J User online 1.0.3 è ottimo, si integra perfettamante anche con CB, ha molte + funzioni di user list, ma con joomla 1.5 non l'ho ancora provato, cmq lo puoi trovare qui:
http://www.software4joomla.com/index.php?option=com_docman&task=doc_details&gid=13&Itemid=48
altrimenti prova "Live user pro"....



13
Può essere che nessuno può darmi na mano ? io avevo pensato di prendere una stringa di codice del modulo che visualizza gli utenti online con la propria foto e inserirla nel modulo della "SMO AJAX SHOUTBOX"
qualcuno può aiutarmi....?? ???
grazie a tutti..

14
Dal sorgente leggo che dovrebbe essere questo "pcajaxcomment" ma non riesco a capire se è un plugin, un componente un modulo....
Qualcuno può aiutarmi...??
Grazie a tutti....

15
Salve a tutti, volevo chiederVi come fare a visualizzare la miniatura (foto) degli utenti registrati, qualcuno darmi il plugin, o magari aiutarmi con il codice, in pratica deve integrarsi con CB 1.1...........
Ho visto molti siti che l'hanno fatto tra cui:
http://www.movidacommunity.it
http://www.photo-4u.it

Ringrazio tutti anticipatamente.

16
Joomsites / Re: VORREI CREARE UN SITO TIPO......(aiuto)
« il: 20 Mar 2008, 23:22:18 »
Si, anch'io penso che di base ci sia AJAX Shoutbox, vorrei sapere   che plugins hanno aggiunto, o magari che codiche bisogna aggiungere....
grazie a tutti, asp qualche risp....

17
Joomsites / Re: VORREI CREARE UN SITO TIPO......(aiuto)
« il: 18 Mar 2008, 16:11:13 »
quelle chat non fanno parte di joomla, sono  script esterni

ciao
Saranno script esterni cmqsia si integrano perfettamente con joomla, chissa dove posso trovare questo script  ??? ?

18
Salve, mi servirebbe un modulo da inserire sul mio sito, dove visualizzo gli utenti online, con la foto(miniatura) e da quanto tempo sono online, tipo questo che ho trovato in questo sito:  http://www.movidacommunity.it
ahh se qualcuno sa dirmi anche che modulo utilizza la chat del sopraindicato sito.
Grazie 1000 a tutta la comunità di joomla.it.

19
Joomsites / Re: VORREI CREARE UN SITO TIPO......(aiuto)
« il: 17 Mar 2008, 06:24:54 »
Grazie mille filpi5481, già ho trovato tutto, mi manca solamente la chat... mi potresti dire come si chiama il componente, o il plugins..... grazie anticipatamente  ;)

20
Joomsites / VORREI CREARE UN SITO TIPO......(aiuto)
« il: 13 Mar 2008, 01:09:54 »
Salve a tutti, vorrei creare un sito in joomla tipo http://www.photo-4u.it , e mi servirebbe sapere come inserire la lista utenti online con la foto e da quanto sono online, e come creare un muro x far chattare gli utenti....
cmq sia datemi più indicazioni possibili su come creare un sito simile a questo.....
Ringrazio anticipatamente tutta la comunita JOOMLA...

Pagine: [1]


Web Design Bolzano Kreatif