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

Pagine: 1 2 [3] 4 5 6
41
Ciao a tutti!
Ho un problema con VirtueMart: nelle pagine dell'ecommerce mi si presentano due volte le "briciole di pane" o path di navigazione che dir si voglia...
E' possibile in qualche modo disabilitare quelle di VirtueMart?

Ciao e grazie!

Alessandro

42
Per soluzione più semplice ecco il file authEA.php per la versione misterestate_102b_full

<?php
/**
* @version $Id: auth.php 4801 2006-08-28 16:10:28Z stingrey $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html 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.
*
* 26.01.2007 modified by Darko Selesi (www.misterestate.com) to fit the needs of the MisterEstate component
* File:      authEA.php
* Version:   1.0.2 Stable
*/

// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );

$basePath    = dirname( __FILE__ );
require( $basePath . '/../../../../globals.php' );

# $basepath reintialization required as globals.php will kill initial when RGs Emulation `Off`
$basePath    = dirname( __FILE__ );
require( $basePath . '/../../../../configuration.php' );

if (!defined( '_MOS_MAMBO_INCLUDED' )) {
   
   if(file_exists($mosConfig_absolute_path . "/includes/joomla.php")){
      $path = $basePath . '/../../../../includes/joomla.php';      
      require( $path );
      $css  = mosGetParam( $_REQUEST, 'css', 'joomla_admin' );      
   }
   else{
      $path = $basePath . '/../../../../includes/mambo.php';      
      require( $path );
      $database = new database( $mosConfig_host, $mosConfig_user, $mosConfig_password, $mosConfig_db, $mosConfig_dbprefix );
      $css  = mosGetParam( $_REQUEST, 'css', 'mambo_admin' );      
     }

}

# 1st security check: check referer host of this script
# if your server doesn´t provide -> $HTTP_REFERER
# please uncomment the following 5 lines.
# There´s a 2nd security check below. 
# more $referer    =    parse_url($HTTP_REFERER);
# $site = parse_url($mosConfig_live_site);
# if( $referer['host'] != $site['host'] ){
#   ( "<center>Sorry, no access to this source. Please log in!</center>" );   
#}

$uid       = mosGetParam( $_REQUEST, 'uid', 0 );
$action      = mosGetParam( $_REQUEST, 'action', '');

# 2nd security check: check if there´s a valid session for this userid
$session = false;
$sql = "SELECT usertype, session_id as id FROM #__session WHERE userid='".$uid."'";
$database->setQuery($sql);
$database->loadObject($session);

#if ( $session == false ){   
# ( "<center>Sorry, no access to this source. Please log in!</center>" );
# }
# else{
   if(!isset($my)){
      $my = new mosUser( $database );
   }
   $my->load($uid);
   
   # 3rd security check: check usertype
#   if($session->usertype != "Super Administrator"
#   && $session->usertype != "Administrator"
#   && $session->usertype != "Manager" ) {      
# ( "<center>Sorry, you don´t have enough rights to access this source. !</center>" );
#   }
   
   # update session timestamp
   $current_time = time();
   $query = "UPDATE #__session"
         . "\n SET time = '$current_time'"
           . "\n WHERE session_id = '$session->id'";
   $database->setQuery( $query );
   $database->query();
# }
?>

Copiate questo file e lo chiamate authEA.php


Funziona davvero! Bellissimo!
Basta sostituire il file authEA.php e utilizzare la versione scaricabile da qui:

http://www.misterestate.com/content/view/76/1/


Ciao! ::)

Ale

43
Gestione sito multilingua / Re: Problemi con JoomFish
« il: 25 Mar 2007, 12:20:58 »
Ho risolto con questa guida:

http://virtuemart.net/?/index.php?option=com_smf&Itemid=71&?topic=18894.msg47986;topicseen

Bisogna usare proprio quelle versioni che indicano! Poi si può fare l'upgrade di VirtueMart direttamente prelevando i file dal sito ufficiale:

http://virtuemart.net/index.php?option=com_docman&task=cat_view&gid=101&Itemid=66


 ;D
Ciao!

Ale

44
Per chi è interessato ho risolto anche con ArtioSef che sul forum viene considerato il migliore!

Scaricare il componente da qui: http://www.artio.cz/en/downloads/joomla-extensions/

Su JoomlaHost l'unica cosa che bisogna fare è sostituire il file htaccess con questo

Codice: [Seleziona]
##
# @version $Id: htaccess.txt 2368 2006-02-14 17:40:02Z stingrey $
# @package Joomla
# @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
#  READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: 'Options FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
#
# Only use one of the two SEF sections that follow.  Lines that can be uncommented
# (and thus used) have only one #.  Lines with two #'s should not be uncommented
# In the section that you don't use, all lines should start with #
#
# For Standard SEF, use the standard SEF section.  You can comment out
# all of the RewriteCond lines and reduce your server's load if you
# don't have directories in your root named 'component' or 'content'
#
# If you are using a 3rd Party SEF or the Core SEF solution
# uncomment all of the lines in the '3rd Party or Core SEF' section
#
#####################################################

#####  SOLVING PROBLEMS WITH COMPONENT URL's that don't work #####
# SPECIAL NOTE FOR SMF USERS WHEN SMF IS INTEGRATED AND BRIDGED
# OR ANY SITUATION WHERE A COMPONENT's URL's AREN't WORKING
#
# In both the 'Standard SEF', and '3rd Party or Core SEF' sections the line:
# RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
# May need to be uncommented.  If you are running your Joomla! from
# a subdirectory the name of the subdirectory will need to be inserted into this
# line.  For example, if your Joomla! is in a subdirectory called '/test/',
# change this:
# RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
# to this:
# RewriteCond %{REQUEST_URI} ^(/test/component/option,com) [NC,OR] ##optional - see notes##
#
#####################################################


##  Can be commented out if causes errors, see notes above.
Options FollowSymLinks

#
#  mod_rewrite in use

RewriteEngine On


#  Uncomment following line if your webserver's URL
#  is not directly related to physical file paths.
#  Update Your Joomla! Directory (just / for root)

# RewriteBase /


########## Begin Standard SEF Section
## ALL (RewriteCond) lines in this section are only required if you actually
## have directories named 'content' or 'component' on your server
## If you do not have directories with these names, comment them out.
#
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
#RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$  [NC]
#RewriteRule ^(content/|component/) index.php
#
########## End Standard SEF Section


########## Begin 3rd Party or Core SEF Section
#
#RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$  [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php
#
########## End 3rd Party or Core SEF Section

e rinominarlo in .htaccess!

Dopodichè funziona tutto!

Ciao!

Ale

45
Ciao a tutti!
Ho seguito la guida e funziona!
Crea problemi solo con alcune pagine di VirtueMart, nelle quali il title diventa esattamente come l'url... quindi una striscia infinita...
Qualcuno ha riscontrato il mio stesso problema e magari è riuscito a risolverlo?

46
SEO / Re: Guida SEO (com che rinomina url pagine)
« il: 22 Mar 2007, 12:59:11 »
Ciao a tutti!
Io ho provato la guida e funziona tutto!
Se inserisco JoomFish per la traduzione arrivano i problemi, in particolare le pagine di contenuto saltano...
Qualcuno ha lo stesso problema?

Grazie!

Alessandro

47
Sezione dedicata ai Server / Re: Url rewriting
« il: 22 Mar 2007, 10:39:19 »
Ho risolto con la guida:
http://forum.joomla.it/index.php?topic=5054.0

qualcuno ci ha provato? E' sicuro modificare il file htaccess?

Ciao ciao

Alessandro

48
Gestione sito multilingua / Problemi con JoomFish
« il: 10 Mar 2007, 15:25:15 »
Ciao a tutti!
Stavo cimentandomi con JoomFish, ma ho un apio di problemi:
1) ho seguito la vostra guida

http://forum.joomla.it/index.php?topic=6210.0

ma se per alcuni componenti tipo DocMan riesco a fare tutti i passaggi, per VirtueMart, ad esempio no! Ho controllato e i file xml scaricati da

http://forge.joomla.org/sf/frs/do/listReleases/projects.joomfish/frs.3rd_party_content_elements

sono diversi e non iniziano con:

<?xml version="1.0" ?>
<joomfish type="contentelement">
........
</joomfish>

e quindi la traduzione non avviene...
Posso modificare direttamente i file io o esiste un sito dove scaricare quelli giusti?

2) purtroppo non mi si è installato automaticamente anche il modulo  "JoomFish language selection" che permette di cambiare la lingua da frontend. Dove lo posso trovare?
In realtà la scelta online effettivamente ce l'ho ma non capisco dove posso impostarla...

3) come mai alcune volte quando passo dall'italiano all'inglese è tutto ok, se poi voglio ritornare all'italiano mi si blocca tutto?

Vi ringrazio per la pazienza! :-[

Ale

49
Sezione dedicata ai Server / Re: Url rewriting
« il: 10 Mar 2007, 14:20:00 »
niente da fare...
attivo opensef, dopo aver sistemato tutti i permessi(a proposito, è normale che non mi si visualizza più il file .htaccess nella schermata dell'ftp?) ma poi quando navigo sul sito tutti i collegamenti saltano...
Forse conviene reinstallare tutto?

50
Sezione dedicata ai Server / Re: Url rewriting
« il: 07 Mar 2007, 11:01:33 »
ok! provo!
Grazie

AM

51
Sezione dedicata ai Server / Url rewriting
« il: 07 Mar 2007, 09:17:40 »
Ciao a tutti!
Ho provato ad installare sia Joomsef che OpenSef per riscrivere le url e rendere più recepibili dai motori di ricerca.
Il problema è che una volta che attivo il componente i collegamenti sul sito online saltano e appare il messaggio di pagina non trovata.
Il sito sta su JoomlaHost, ho attivato il Seo Friendly e rinominato il file in .htaccess. Mi manca ancora qualcosa? Forse devo dare dei permessi particolari a .htaccess?

Ale

53
Grazie pixma22!
ma i realtà il problema resta...
ho provato ad installare il tutto su un server dedicato a Joomla, pare andare tutto bene, se clicco su gallery vedo la pagina e non mi da più errore... ma se faccio l'upload non succede nulla....
Probabilmente ho sbagliato qualcosa nel correggere il file authEA.php, oppure può essere un problema il fatto che ho installato la nuova versione di MisterEstate?
Riprovo....

Ale

54
Ciao a tutti!
Ho letto un pò di post e ho capito che per risolvere il problema: "PHP register_globals setting is `ON` instead of `OFF`" esiste questa soluzione:

---PER DISABILIARE register_globals---
nel file htaccess aggiungere la linea
php_flag register_globals off

ma sinceramente non mi funziona...

Inserisco la stringa così liberamente o in un punto preciso?

può essere un problema che il file in questione è diventato .htaccess per il Seo?

55
Scusate ma io non ci ho capito molto...

io non riesco a caricare le immagini, mi si apre una finestra di errore...

devo seguire il file che trovo qui?

http://www.joomlaportal.de/geloeste-themen-joomla-komponenten/78892-mister-estate-gallery-problem.html

quello in fondo?

<?php
/**
* @version $Id: auth.php 4801 2006-08-28 16:10:28Z stingrey $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html 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.
*
* 26.01.2007 modified by Darko Selesi (www.misterestate.com) to fit the needs of the MisterEstate component
* File:        authEA.php
* Version:    1.0.2 Stable
*/

// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );

$basePath     = dirname( __FILE__ );
require( $basePath . '/../../../../globals.php' );

// $basepath reintialization required as globals.php will kill initial when RGs Emulation `Off` 
$basePath     = dirname( __FILE__ );
require( $basePath . '/../../../../configuration.php' );

if (!defined( '_MOS_MAMBO_INCLUDED' )) {
     
    if(file_exists($mosConfig_absolute_path . "/includes/joomla.php")){
        $path = $basePath . '/../../../../includes/joomla.php';         
        require( $path );
        $css  = mosGetParam( $_REQUEST, 'css', 'joomla_admin' );         
    }
    else{
        $path = $basePath . '/../../../../includes/mambo.php';         
        require( $path );
        $database = new database( $mosConfig_host, $mosConfig_user, $mosConfig_password, $mosConfig_db, $mosConfig_dbprefix );
        $css  = mosGetParam( $_REQUEST, 'css', 'mambo_admin' );         
      }

}

// 1st security check: check referer host of this script
// if your server doesn´t provide -> $HTTP_REFERER
// please uncomment the following 5 lines.
// There´s a 2nd security check below.   
// $referer     =     parse_url($HTTP_REFERER);
// $site         =     parse_url($mosConfig_live_site);
// if( $referer['host'] != $site['host'] ){
//    die( "<center>Sorry, no access to this source. Please log in!</center>" );     
//}

$uid         = mosGetParam( $_REQUEST, 'uid', 0 );
$action        = mosGetParam( $_REQUEST, 'action', '');

// 2nd security check: check if there´s a valid session for this userid 
$session = false;
$sql = "SELECT usertype, session_id as id FROM #__session WHERE userid='".$uid."'";
$database->setQuery($sql);
$database->loadObject($session);

//if( $session == false ){     
//      die( "<center>Sorry, no access to this source. Please log in!</center>" );
// }
// else{
    if(!isset($my)){
        $my = new mosUser( $database );
    }
    $my->load($uid);
     
    // 3rd security check: check usertype
//    if($session->usertype != "Super Administrator"
//        && $session->usertype != "Administrator"
//        && $session->usertype != "Manager" ) {         
//        die( "<center>Sorry, you don´t have enough rights to access this source. !</center>" );
//    }
     
    // update session timestamp
    $current_time = time();
    $query = "UPDATE #__session"
            . "\n SET time = '$current_time'"
              . "\n WHERE session_id = '$session->id'";
    $database->setQuery( $query );
    $database->query();
// }
?>

56
Ciao,
per caso qualcuno di voi conosce un modo, o chessò un componente/modulo, per dare la possibilità all'utente in amministrazione di caricare un'immagine e di ridimensionarla sia in termini di pixel che di peso?
Io ho visto che il componente misterEstate ha questa opzione, ma a me non funziona proprio il caricamento delle immagini... (solo per questo componente, da gestione media riesco a caricarle tranquillamente!).

Ale

57
no no! forse non mi sono spiegato! il vecchio sito non mi serve, deve solo rimanere su fino a quando il nuovo non è pronto!
Quindi io creo un sito ex novo in una sottocartella e volevo sapere se poi bastava spostare i file sulla root!

Ciao!

58
No, adesso ce n'è su uno strambo... non Joomla! Io voglio installare Joomla ma trasferire tutto il lavoro fatto solo alla fine...
Mi basta sapere che devo cambiare solo il file configuration.php!

Grazie mille!!! ;D

59
Ciao a tutti!
Avrei bisogno di un chiarimento/consiglio/dritta... :-\

Ragionando per ipotesi, se io voglio rifare un sito con Joomla, ma sulla root principale gira già un sito CMS che devo far funzionare fino all'ultimo momento prima del trapasso, come posso agire?

Se io creo il sito in una sottocartella, collegandolo ovviamente ad un database distinto, posso poi a lavoro finito trasportare tutto il sito sulla root principale? Devo cambiare tutti i settaggi o basta spostare i files? Per il database vado incontro a problemi? ???

Non so se son stato chiaro, se qualcuno ha delle esperienze simili gli sarei grato...

Ciao e grazie!

Ale

60
Gestione documenti e download / Re: upload non riuscito
« il: 18 Dic 2006, 23:47:55 »
come non detto... ho trovato l'opzione cliccando sul tema di docman!
Beh almeno un passo avanti... adesso mi manca solo l'upload! ;D

Pagine: 1 2 [3] 4 5 6
Host

Torna su