1
Joomla! 1.5 / Re:Problema upload immagini
« il: 05 Ott 2010, 17:57:44 »
Ho risolto riuppando la cartella administrator :O
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.
Ciao Leux,
facile che essendo centinaia di immagini vada in tmeout.
Prova via ftp a spostarne la metà in una directory temportanea per vedere se il problema è quello.
Ciao!
Visto che hai cambiato servizio, prova a verificare se i percorsi tmp e log in configurazione (da back end) sono corretti.
letta la tua prima risposta avevo fatto anche io lo stesso esperimento, hanno uno script che rimappa la pagina da caricare.
quindi il procedimento indicato prima è giusto, prova a rifarlo con attenzione: che succede esattamente?
nota: comunque sarà un massacro lato motori di ricerca.
ciao,
marco
per utilizzare il path forwarding, devi modificare la pagina index così:
Codice HTML:Codice: [Seleziona]...
...
<body>
<a href="http://www.nomedominio.com/chisono.html" target="_top">Chi sono</a>
<a href="http://www.nomedominio.com/info.html" target="_top">Info</a>
<a href="http://www.nomedominio.com/portale/forum/index.html" target="_top">Forum</a>
</body>
quindi per ogni link devi mettere il target="_top" e il href="http://www.nomedominio.com/ecc...."
3.2 Se utilizzi un CMS ti devi mettere a modificare tutti i file mettendo il target="_top" e il href="http://www.nomedominio.com/ecc...."
provato cliccando in home e logo il tuo sito ricarica la pagina nulla di anomalo xche dici che ti porta in altervista?
fa un redirect in corso che non dovrebbe fare.
come hai fatto a fare il menu?
hai la home che punta altervista
<span>Home</span>
cancellala voce home rifai la voce home come pagina principale che il link lo prede in automatico quello del sito su cui risiedi.
<?php // @version $Id: default.php 11917 2009-05-29 19:37:05Z ian $
defined('_JEXEC') or die('Restricted access');
include_once(dirname(__FILE__).DS.'..'.DS.'icon.php');
?>
<div id="page">
<?php if (($this->user->authorize('com_content', 'edit', 'content', 'all') || $this->user->authorize('com_content', 'edit', 'content', 'own')) && !($this->print)) : ?>
<div class="contentpaneopen_edit<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<?php echo JHTML::_('icon.edit', $this->article, $this->params, $this->access); ?>
</div>
<?php endif; ?>
<?php if ($this->params->get('show_page_title',1) && $this->params->get('page_title') != $this->article->title) : ?>
<h1 class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<?php echo $this->escape($this->params->get('page_title')); ?>
</h1>
<?php endif; ?>
<?php if ($this->params->get('show_title')) : ?>
<h2 class="contentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<?php if ($this->params->get('link_titles') && $this->article->readmore_link != '') : ?>
<a href="<?php echo $this->article->readmore_link; ?>" class="contentpagetitle<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<?php echo $this->escape($this->article->title); ?></a>
<?php else :
echo $this->escape($this->article->title);
endif; ?>
</h2>
<?php endif; ?>
<?php if ((intval($this->article->modified) !=0 && $this->params->get('show_modify_date')) || ($this->params->get('show_author') && ($this->article->author != "")) || ($this->params->get('show_create_date'))) : ?>
<p class="articleinfo">
<?php if (intval($this->article->modified) !=0 && $this->params->get('show_modify_date')) : ?>
<span class="modifydate">
<?php echo JText::sprintf('LAST_UPDATED2', JHTML::_('date', $this->article->modified, JText::_('DATE_FORMAT_LC2'))); ?>
</span>
<?php endif; ?>
<?php if (($this->params->get('show_author')) && ($this->article->author != "")) : ?>
<span class="createdby">
<?php JText::printf('Written by', ($this->article->created_by_alias ? $this->escape($this->article->created_by_alias) : $this->escape($this->article->author))); ?>
</span>
<?php endif; ?>
<?php if ($this->params->get('show_create_date')) : ?>
<span class="createdate">
<?php echo JHTML::_('date', $this->article->created, JText::_('DATE_FORMAT_LC2')); ?>
</span>
<?php endif; ?>
</p>
<?php endif; ?>
<?php if (!$this->params->get('show_intro')) :
echo $this->article->event->afterDisplayTitle;
endif; ?>
<p class="buttonheading">
<?php if ($this->print) :
echo RokIcon::print_screen($this->article, $this->params, $this->access);
elseif ($this->params->get('show_pdf_icon') || $this->params->get('show_print_icon') || $this->params->get('show_email_icon')) : ?>
<?php if ($this->params->get('show_pdf_icon')) :
echo RokIcon::pdf($this->article, $this->params, $this->access);
endif;
if ($this->params->get('show_print_icon')) :
echo RokIcon::print_popup($this->article, $this->params, $this->access);
endif;
if ($this->params->get('show_email_icon')) :
echo RokIcon::email($this->article, $this->params, $this->access);
endif;
endif; ?>
</p>
<?php if (($this->params->get('show_section') && $this->article->sectionid) || ($this->params->get('show_category') && $this->article->catid)) : ?>
<p class="iteminfo">
<?php if ($this->params->get('show_section') && $this->article->sectionid) : ?>
<span>
<?php if ($this->params->get('link_section')) : ?>
<?php echo '<a href="'.JRoute::_(ContentHelperRoute::getSectionRoute($this->article->sectionid)).'">'; ?>
<?php endif; ?>
<?php echo $this->escape($this->article->section); ?>
<?php if ($this->params->get('link_section')) : ?>
<?php echo '</a>'; ?>
<?php endif; ?>
<?php if ($this->params->get('show_category')) : ?>
<?php echo ' - '; ?>
<?php endif; ?>
</span>
<?php endif; ?>
<?php if ($this->params->get('show_category') && $this->article->catid) : ?>
<span>
<?php if ($this->params->get('link_category')) : ?>
<?php echo '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->article->catslug, $this->article->sectionid)).'">'; ?>
<?php endif; ?>
<?php echo $this->escape($this->article->category); ?>
<?php if ($this->params->get('link_category')) : ?>
<?php echo '</a>'; ?>
<?php endif; ?>
</span>
<?php endif; ?>
</p>
<?php endif; ?>
<?php echo $this->article->event->beforeDisplayContent; ?>
<?php if ($this->params->get('show_url') && $this->article->urls) : ?>
<span class="small">
<a href="<?php echo $this->escape($this->article->urls); ?>" target="_blank">
<?php echo $this->escape($this->article->urls); ?></a>
</span>
<?php endif; ?>
<?php if (isset ($this->article->toc)) :
echo $this->article->toc;
endif; ?>
<?php echo JFilterOutput::ampReplace($this->article->text); ?>
<?php echo $this->article->event->afterDisplayContent; ?>
</div>
![]() |
|