Visualizzazione dei risultati da 1 a 9 su 9

Discussione: Problema Mambo

  1. #1
    Utente bannato L'avatar di MobaDesign
    Registrato dal
    Oct 2005
    Messaggi
    9

    Problema Mambo

    Salve a tutti,

    dopo aver installato correttamente il CMS Mambo Open Source su un server Linux mi appare la homepage corretta sotto tutti i punti di vista, ma con al centro del blocco centrale una sfilza di testo:

    t cache group for function caching (string) * ); * * @param array $options options * @access public */ function Cache_Lite_Function($options = array(NULL)) { if (isset($options['defaultGroup'])) { $this->_defaultGroup = $options['defaultGroup']; } $this->Cache_Lite($options); } /** * Calls a cacheable function or method (or not if there is already a cache for it) * * Arguments of this method are read with func_get_args. So it doesn't appear * in the function definition. Synopsis : * call('functionName', $arg1, $arg2, ...) * (arg1, arg2... are arguments of 'functionName') * * @return mixed result of the function/method * @access public */ function call() { $arguments = func_get_args(); $id = serialize($arguments); // Generate a cache id if (!$this->_fileNameProtection) { $id = md5($id); // if fileNameProtection is set to false, then the id has to be hashed // because it's a very bad file name in most cases } $data = $this->get($id, $this->_defaultGroup); if ($data !== false) { $array = unserialize($data); $output = $array['output']; $result = $array['result']; } else { ob_start(); ob_implicit_flush(false); $target = array_shift($arguments); if (strstr($target, '::')) { // classname::staticMethod list($class, $method) = explode('::', $target); $result = call_user_func_array(array($class, $method), $arguments); } else if (strstr($target, '->')) { // object->method // use a stupid name ($objet_123456789 because) of problems when the object // name is the same as this var name list($object_123456789, $method) = explode('->', $target); global $$object_123456789; $result = call_user_func_array(array($$object_123456789, $method), $arguments); } else { // function $result = call_user_func_array($target, $arguments); } $output = ob_get_contents(); ob_end_clean(); $array['output'] = $output; $array['result'] = $result; $this->save(serialize($array), $id, $this->_defaultGroup); } echo($output); return $result; } } ?>



    Qualcuno può aiutarmi a capire di cosa si tratta?

  2. #2
    Utente bannato
    Registrato dal
    Sep 2005
    Messaggi
    905
    mi sa che non hai installato il php...

  3. #3
    Utente bannato L'avatar di MobaDesign
    Registrato dal
    Oct 2005
    Messaggi
    9
    Originariamente inviato da php_34
    mi sa che non hai installato il php...
    oibò com'è possibile..?

    Non dovrebbe vedersi nulla se non c'è il php installato... o no?

  4. #4
    Utente bannato
    Registrato dal
    Sep 2005
    Messaggi
    905
    scrivi in una pagina <?php phpinfo(); ?> e chiamala test.php, eseguila e dimmi cosa ti esce.

  5. #5
    Utente bannato L'avatar di MobaDesign
    Registrato dal
    Oct 2005
    Messaggi
    9
    Originariamente inviato da php_34
    scrivi in una pagina <?php phpinfo(); ?> e chiamala test.php, eseguila e dimmi cosa ti esce.
    Mi esce la pagina PHP Version 4.3.8 con tutta una sfilza di parametri

  6. #6
    Utente bannato
    Registrato dal
    Sep 2005
    Messaggi
    905
    sì, è strano che ti esca quella cosa col cms....

  7. #7
    Utente bannato L'avatar di MobaDesign
    Registrato dal
    Oct 2005
    Messaggi
    9
    Può essere perchè nel php.ini display_errors è su On?

  8. #8
    Utente bannato
    Registrato dal
    Sep 2005
    Messaggi
    905
    non c'entra niente, mostrerebbe li errori, non il codice php..

  9. #9
    Potrebbe essere semplicemente che il file non è stato caricato correttamente sul server?

    McSim

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.