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 - PiccolaStellainCielo

Pagine: 1 ... 7 8 9 [10]
181
Nessuno  ??? ??? ??? ?

182
Ho installato il mambots di ricerca avanzata degli eventi. Il problema è: come lo visualizzo? Lo rendo visibile dall'amministra, ma poi come faccio a vederlo anche on-line???

183
Sviluppo / Re: Componente link?
« il: 02 Ott 2006, 14:30:42 »
... qualcosa tipo "pagine gialle" per intenderci

184
Sviluppo / Componente link?
« il: 02 Ott 2006, 12:41:41 »
Esiste una componente link un po' più articolata di quella base?

185
Gallerie di immagini / Re: Problema con Zoom Media Gallery
« il: 29 Set 2006, 14:50:44 »
Risolto.
Bastava creare una cartella tmp nella root!

186
Gallerie di immagini / Re: Problema con Zoom Media Gallery
« il: 29 Set 2006, 14:05:50 »
uguale....

187
Gallerie di immagini / Re: Problema con Zoom Media Gallery
« il: 29 Set 2006, 09:56:46 »
di Joomla è la 1.0.8 mentre la Zoom è l'ultima, zOOm Media Gallery 2.5.1 RC2. Il problema è che in locale mi funziona correttamente (e anche in altri siti...)

188
Gallerie di immagini / Problema con Zoom Media Gallery
« il: 29 Set 2006, 09:31:46 »
Zoom Media gallery di solito non mi ha dato problemi.
L'ho installato per un cliente su un host tiscali, mi crea senza problemi la galleri, ma al momento di inserire le foto mi da questo errore:

Codice: [Seleziona]
Warning: move_uploaded_file() [function.move-uploaded-file]: open_basedir restriction in effect. File(/tmp/php4zYLMY) is not within the allowed path(s): (/rootdomain/org/l/i/lionsfaenzahost.org/public_html/) in /rootdomain/org/l/i/lionsfaenzahost.org/public_html/components/com_zoom/lib/toolbox.class.php on line 260

Warning: move_uploaded_file(/tmp/php4zYLMY) [function.move-uploaded-file]: failed to open stream: Operation not permitted in /rootdomain/org/l/i/lionsfaenzahost.org/public_html/components/com_zoom/lib/toolbox.class.php on line 260

Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/php4zYLMY' to '/rootdomain/org/l/i/lionsfaenzahost.org/public_html//images/zoom/prova/200314870-001.jpg' in /rootdomain/org/l/i/lionsfaenzahost.org/public_html/components/com_zoom/lib/toolbox.class.php on line 260
Medium Name Error type

200314870-001.jpg _ZOOM_ALERT_MOVEFAILURE

Qualcuno mi sa dire da cosa dipende?

189
il footer è incluso dal file che si chiama footer.php presente nella cartella includes. © 2006 nomesito è preso però dinamicamente dall'anno corrente e dal nome del sito che tu inserisci da pannello.

190
Gestione sito multilingua / Re: Joom!fish e Zoom gallery
« il: 20 Set 2006, 09:20:11 »
Bisogna creare due file xml: uno l'ho chiamato zoom, e si riferiscr alle gallerie, l'altro  l'ho chiamato zoom_files e si riferisce alle foto. Il nome comunque è indifferente.
I due file sono questi:

zoom.xml
Citazione
<?xml version="1.0" ?>
<joomfish type="contentelement">
  <name>Photo Galleries</name>
  <author>D. Takamori</author>
  <version>1.7</version>
  <description>Definition for the ZoomGallery component galleries</description>
  <reference>
     <table name="zoom">
        <field type="referenceid" name="catid" translate="0">ID</field>
        <field type="titletext" name="catname" translate="1">Gallery Name</field>
        <field type="htmltext" name="catdescr" translate="1">Description</field>
        <field type="text" name="catdir" translate="0">Directory</field>
        <field type="text" name="catpassword" translate="0">Gallery Password</field>
        <field type="text" name="catkeywords" translate="1">Keywords</field>
        <field type="text" name="uid" translate="0">Author</field>
     </table>
  </reference>
  <translationfilters>
       <category>catid</category>
       <author>uid</author>
       <keyword>catname</keyword>
  </translationfilters>
</joomfish>

In poche parole gli dico quali campi della tabella zoom deve estrarre e farmi tradurre.

questo è il file zoom_files:

Citazione
<?xml version="1.0" ?>
<joomfish type="contentelement">
  <name>Photos</name>
  <author>D. Takamori</author>
  <version>1.7</version>
  <description>Definition for the ZoomGallery component images</description>
  <reference type="content">
     <table name="zoomfiles">
        <field type="referenceid" name="imgid" translate="0">ID</field>
        <field type="referenceid" name="catid" translate="0">Gallery</field>
        <field type="titletext" name="imgname" translate="1">Title</field>
        <field type="text" name="imgdescr" translate="1">Description</field>
        <field type="created_date" name="imgdate" translate="0">Created</field>
        <field type="text" name="imgkeywords" translate="1">Keywords</field>
        <field type="text" name="uid" translate="0">Author</field>
     </table>
  </reference>
  <translationfilters>
       <category>catid</category>
       <author>uid</author>
       <keyword>catname</keyword>
  </translationfilters>
</joomfish>

Questi due file xml vanno salvati dentro administrator -> components -> com_joomfish -> contentelements

Poi bisogna aprire il file joomfish.xml che si trova in administrator -> components -> com_joomfish e inserire (circa alla riga 100) la seguente dicitura:
Citazione
   <filename>contentelements/zoom.xml</filename>
   <filename>contentelements/zoomfiles.xml</filename>

A questo punto dal lato amministrativo è possibile tradurre.
Ma io non riuscivo a visualizzare le traduzioni a lato pubblico.

Quindi aprire il file gallery.class.php che si trova in components -> zom_zoom -> lib
e (facendo un backup..... da me funziona ma non si sa mai) sostituire la funzione _getInfo con questa qui:
Citazione
function _getInfo($galleryview = false){
global $database;
      $database->setQuery("SELECT catid, catname, catdescr, catdir, catimg, subcat_id, catpassword, pos, custom_order, hideMsg, shared, published, uid, catmembers FROM #__zoom WHERE catid=".$this->_id." LIMIT 1");
      $this->_result = $database->query();
      $rows = $database->loadObjectList();
      if(count($rows) > 0){
//      if(mysql_num_rows($this->_result) > 0){
//         while($row = mysql_fetch_object($this->_result)){
         foreach($rows as $row){
            $this->_name = $this->stripslashesSafe($row->catname);
            $this->_descr = $this->stripslashesSafe($row->catdescr);            
            $this->_dir = $row->catdir;
            $this->_cat_img = $row->catimg;
            $this->_subcat_id = $row->subcat_id;
            $this->_password = $row->catpassword;
            $this->_pos = $row->pos;
            $this->_custom_order = $row->custom_order;
            $this->_hideMsg = $row->hideMsg;
            $this->_shared = $row->shared;
            $this->_published = $row->published;
            $this->_uid = $row->uid;
            $members = explode(",", $row->catmembers);
            // gallery-members of type 1 are of access-level 'public'
            // and members of type 2 are 'registered'.
            if (in_array("1", $members)) {
               $this->_members[0] = 1;
            } elseif(in_array("2", $members)) {
               $this->_members[0] = 2;
            } else {
               $this->_members = $members;
            }
         }
      } else {
         die("This is not a valid gallery-id. Please return to the homepage and try again.");
      }
   }

Aprire infine il file image.class.php che si trova in components -> com_zoom -> lib
e sostituire (backup!) la funzione getInfo con questa:
Citazione
   function getInfo($galleryview = true) {
global $database, $mosConfig_absolute_path, $zoom;
      $database->setQuery("SELECT imgid, imgname, imgkeywords, imgfilename, imgdescr, date_format(imgdate, '%d-%m-%y, %h:%i') AS date, imghits, votenum, votesum, published, catid, uid, imgmembers FROM #__zoomfiles WHERE imgid=".$zoom->escapeString($this->_id));
      $this->_result = $database->query();
      //while($row = mysql_fetch_object($this->_result)){
      $rows=$database->loadObjectList();
      foreach ($rows as $row){
         $this->_name = stripslashes($row->imgname);
         $this->_keywords = stripslashes($row->imgkeywords);         
         $this->_filename = $row->imgfilename;
         $this->_descr = stripslashes($row->imgdescr);
         $this->_date = $row->date;
         $this->_hits = $row->imghits;
         $this->_votenum = $row->votenum;
         $this->_votesum = $row->votesum;
         $this->_published = $row->published;
         $this->_catid = $row->catid;
         $this->_uid = $row->uid;
         $members = explode(",", $row->imgmembers);
         // gallery-members of type 1 are of access-level 'public'
         // and members of type 2 are 'registered'.
         if(in_array("1", $members)) {
             $this->_members[0] = 1;
         } elseif(in_array("2", $members)) {
             $this->_members[0] = 2;
         } else {
             $this->_members = $members;
         }
      }
      $this->_type = ereg_replace(".*\.([^\.]*)$", "\\1", $this->_filename);
      $this->_type = strtolower($this->_type);
      $this->setThumbnail();
      // get comments of image...
      $this->getComments();
      $this->_viewsize = $this->getViewsize();
      if (!$galleryview) {
         $this->getMetaData();
      }
   }

è tutto, spero sia utile...
Spero di essere stata chiara... se non capite qualcosa...sono qui ;D

191
Gestione sito multilingua / Re: Joom!fish e Zoom gallery
« il: 19 Set 2006, 11:56:51 »
Mi sono creata lo script io, se a qualcuno interessa... faccia un fischio  ;)

192
Gestione sito multilingua / Re: Joom!fish e Zoom gallery
« il: 19 Set 2006, 10:54:10 »
anche io sono interessata.... nessuno?

193
Gestione sito multilingua / Re: file loingua russa
« il: 19 Set 2006, 10:52:32 »
ne hai ancora bisogno? Perchè io l'ho trovato e installato e non da problemi

194
Joomla! 1.5 / Re: Tutorial Installazione Joomla su Altervista
« il: 14 Lug 2006, 16:50:26 »
Gestisco un sito non troppo grande, per un'associazione. Non abbiamo il dominio, ma solo un account su altervista...
Pensavo di provare Joomla (che già conosco per questioni lavorative).
Mi consigliate di installarlo su Altervista? Il DB "regge"?

Pagine: 1 ... 7 8 9 [10]


Web Design Bolzano Kreatif