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

Pagine: [1] 2
1
Joomla! 1.5 / Re: help!!!!! categoria...
« il: 13 Ago 2008, 12:16:15 »
ho scoperto che se metto l'optione "mostra numero di elementi da mostrare come link" riesco a visualizzare tutti i 30 articoli/video.. e tolgo l'optione non me ne fa vedere piu' di 20.

ovviamente 10 per pagina...

2
Joomla! 1.5 / Re: help!!!!! categoria...
« il: 13 Ago 2008, 12:10:22 »
fatto ... pero' ho visto che va al massimo fino a 20 articoli.. non dipiu'...  :(

3
Joomla! 1.5 / Re: help!!!!! categoria...
« il: 13 Ago 2008, 11:47:53 »
ma se ne metto 100 da visualizzare io poi come diavolo faccio a far venire la paginazione o come diavolo si chiama??

..vuoi dire che devo mettere 100 articoli in quella categoria per poter vedere la cosina sotto?..

4
Joomla! 1.5 / Re: help!!!!! categoria...
« il: 13 Ago 2008, 11:35:11 »
allora... io ho messo 6 da visualizzare 2 in colonna

se imposto 2 da visualizzare me ne fa vedere solo due.
senza farmi spostare di pagina..  ??? ??? ??? ??? ??? ??? ???

5
Joomla! 1.5 / Re: help!!!!! categoria...
« il: 13 Ago 2008, 10:55:30 »
ma c'è bisogno che appaia? a me pare che no...


io vorrei che in ogni singola categoria mi venga messo in basso « * Inizio * Prec. * 1 * 2 * 3 * 4 * Succ. * Fine * »

per evitare di mettere ale&franz - ale&franz2 - ale&franz3

sarebbe molto meglio usare una sola categoria ale&franz e poi scorrere le pagine se ci sono ad esempio piu' di 6 video/articoli

6
Joomla! 1.5 / Re: help!!!!! categoria...
« il: 13 Ago 2008, 10:31:35 »
qual'è il problema?
la paginazione di fondo dici?  cosa si dovrebbe vedere?


se tu clicchi su "Video divertenti" sul mio sito, in fondo alla pagina vedi la paginazione (1 2 3 4 5 ecc..)
mentre se clicchi su una categoria qualsiasi (es. Ale&franz) in fondo alla pagina non riesco a fare venire la paginazione.

questo perchè in sezione funziona, in categoria no.
e non mi capacito del perchè.
questo è quello che voglio fare venire anche nella lista/blog delle categorie

    * « * Inizio * Prec. * 1 * 2 * 3 * 4 * Succ. * Fine * »

7
Joomla! 1.5 / help!!!!! categoria...
« il: 13 Ago 2008, 09:34:53 »
Ciao a tutti.
vi pongo un quesito:
come mai se metti una lista in formato blod di una qualsisasi categoria non si puo' visualizzare la pagninazione (es. 1 di 4)
mentre per le sezioni si.

qualcuno l osa fare anche per le categorie?

per favore aiutatemi. vi metto il link del mio sito (http://www.k4ma.it), la sezione incriminatata è "Video divertenti". come potete appena clicchi su video divertenti (sezione) appare la paginazione in fondo, mentre su ogni singola categoria no!

e mnon so come fare ..


help!!! per favore

8
Joomla! 1.5 / Re: visite degli articoli
« il: 01 Ago 2008, 16:52:32 »
e poi come mai nel catalogo blog non ci sta la possibilità di cambiare pagina..

es..

<- 3 di 4 ->

9
Joomla! 1.5 / Re: visite degli articoli
« il: 01 Ago 2008, 15:56:36 »
nonon... intendo che se guardo il video non mi sale il numero di visite.. e non capisco il perchè

10
Joomla! 1.5 / visite degli articoli
« il: 01 Ago 2008, 15:35:18 »
Ciao a tutti,
allora, cerchero' di essere chiaro:

ho creato un collegamento
"Articles » Categoria / Blog"

e articoli con un collegamento ad un video youtube.

volevo sapere, per visualizzare e incrementare le visite come diavolo si fa? visto che se lo guardo non vale come visita..
si puo' fare valere la visita anche solo guardando il filmato?

grazie

www.k4ma.it   (vi giro il sito cosi' capite di cosa parlo)

p.s. la sezione si trova in Video Divertenti

11
nessuno ha una soluzione a riguardo?

12
tutto chiaro.. :D
grazie

ora aspetto che esca per la 1.5 o che qualcuno mi aiuti a modificare il codice php.

ho provato a leggerlo ma non ci ho capito molto. voglio evitare di fare casino.

13
per favore per favore... vi supplico.. aiutatemi

14
e in controller.php ho questo:

Codice: [Seleziona]
<?php
/**
 * @version $Id: controller.php 10381 2008-06-01 03:35:53Z pasamio $
 * @package Joomla
 * @subpackage Content
 * @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 included in Joomla!
defined('_JEXEC') or die( 'Restricted access' );

jimport('joomla.application.component.controller');

/**
 * Content Component Controller
 *
 * @package Joomla
 * @subpackage Content
 * @since 1.5
 */
class ContentController extends JController
{
/**
 * Method to show an article as the main page display
 *
 * @access public
 * @since 1.5
 */
function display()
{
JHTML::_('behavior.caption');

// Set a default view if none exists
if ( ! JRequest::getCmd'view' ) ) {
$default JRequest::getInt('id') ? 'article' 'frontpage';
JRequest::setVar('view'$default );
}

// View caching logic -- simple... are we logged in?
$user = &JFactory::getUser();
if ($user->get('id')) {
parent::display(false);
} else {
parent::display(true);
}
}

/**
* Edits an article
*
* @access public
* @since 1.5
*/
function edit()
{
$user =& JFactory::getUser();

// Create a user access object for the user
$access = new stdClass();
$access->canEdit $user->authorize('com_content''edit''content''all');
$access->canEditOwn $user->authorize('com_content''edit''content''own');
$access->canPublish $user->authorize('com_content''publish''content''all');

// Create the view
$view = & $this->getView('article''html');

// Get/Create the model
$model = & $this->getModel('Article');

// new record
if (!($access->canEdit || $access->canEditOwn)) {
JError::raiseError403JText::_("ALERTNOTAUTH") );
}

if( $model->get('id') > && $user->get('gid') <= 19 && $model->get('created_by') != $user->id ) {
JError::raiseError403JText::_("ALERTNOTAUTH") );
}

if ( $model->isCheckedOut($user->get('id')))
{
$msg JText::sprintf('DESCBEINGEDITTED'JText::_('The item'), $model->get('title'));
$this->setRedirect(JRoute::_('index.php?view=article&id='.$model->get('id'), false), $msg);
return;
}

//Checkout the article
$model->checkout();

// Push the model into the view (as default)
$view->setModel($modeltrue);

// Set the layout
$view->setLayout('form');

// Display the view
$view->display();
}

/**
* Saves the content item an edit form submit
*
* @todo
*/
function save()
{
// Check for request forgeries
JRequest::checkToken() or jexit'Invalid Token' );

// Initialize variables
$db = & JFactory::getDBO();
$user = & JFactory::getUser();
$task JRequest::getVar('task'null'default''cmd');

// Make sure you are logged in and have the necessary access rights
if ($user->get('gid') < 19) {
JError::raiseError403JText::_('ALERTNOTAUTH') );
return;
}

// Create a user access object for the user
$access = new stdClass();
$access->canEdit $user->authorize('com_content''edit''content''all');
$access->canEditOwn $user->authorize('com_content''edit''content''own');
$access->canPublish $user->authorize('com_content''publish''content''all');

if (!($access->canEdit || $access->canEditOwn)) {
JError::raiseError403JText::_("ALERTNOTAUTH") );
}

//get data from the request
$model $this->getModel('article');

//get data from request
$post JRequest::get('post');
$post['text'] = JRequest::getVar('text''''post''string'JREQUEST_ALLOWRAW);

//preform access checks
$isNew = ((int) $post['id'] < 1);

if ($model->store($post)) {
$msg JText::_'Article Saved' );

if($isNew) {
$post['id'] = (int) $model->get('id');
}
} else {
$msg JText::_'Error Saving Article' );
JError::raiseError500$model->getError() );
}

// manage frontpage items
//TODO : Move this into a frontpage model
require_once (JPATH_ADMINISTRATOR.DS.'components'.DS.'com_frontpage'.DS.'tables'.DS.'frontpage.php');
$fp = new TableFrontPage($db);

if (JRequest::getVar('frontpage'false'''boolean'))
{
// toggles go to first place
if (!$fp->load($post['id']))
{
// new entry
$query 'INSERT INTO #__content_frontpage' .
' VALUES ( '.(int) $post['id'].', 1 )';
$db->setQuery($query);
if (!$db->query()) {
JError::raiseError500$db->stderr());
}
$fp->ordering 1;
}
}
else
{
// no frontpage mask
if (!$fp->delete($post['id'])) {
$msg .= $fp->stderr();
}
$fp->ordering 0;
}
$fp->reorder();

$model->checkin();

// gets section name of item
$query 'SELECT s.title' .
' FROM #__sections AS s' .
' WHERE s.scope = "content"' .
' AND s.id = ' . (int) $post['sectionid'];
$db->setQuery($query);
// gets category name of item
$section $db->loadResult();

$query 'SELECT c.title' .
' FROM #__categories AS c' .
' WHERE c.id = ' . (int) $post['catid'];
$db->setQuery($query);
$category $db->loadResult();

if ($isNew)
{
// messaging for new items
require_once (JPATH_ADMINISTRATOR.DS.'components'.DS.'com_messages'.DS.'tables'.DS.'message.php');

// load language for messaging
$lang =& JFactory::getLanguage();
$lang->load('com_messages');

$query 'SELECT id' .
' FROM #__users' .
' WHERE sendEmail = 1';
$db->setQuery($query);
$users $db->loadResultArray();
foreach ($users as $user_id)
{
$msg = new TableMessage($db);
$msg->send($user->get('id'), $user_idJText::_('New Item'), JText::sprintf('ON_NEW_CONTENT'$user->get('username'), $post['title'], $section$category));
}
} else {
// If the article isn't new, then we need to clean the cache so that our changes appear realtime :)
$cache = &JFactory::getCache('com_content');
$cache->clean();
}

if ($access->canPublish)
{
// Publishers, admins, etc just get the stock msg
$msg JText::_('Item successfully saved.');
}
else
{
$msg $isNew JText::_('THANK_SUB') : JText::_('Item successfully saved.');
}


$link JRequest::getString('referer'JURI::base(), 'post');
$this->setRedirect($link$msg);
}

/**
* Cancels an edit article operation
*
* @access public
* @since 1.5
*/
function cancel()
{
// Initialize some variables
$db = & JFactory::getDBO();
$user = & JFactory::getUser();

// Get an article table object and bind post variabes to it [We don't need a full model here]
$article = & JTable::getInstance('content');
$article->bind(JRequest::get('post'));

if ($user->authorize('com_content''edit''content''all') || ($user->authorize('com_content''edit''content''own') && $article->created_by == $user->get('id'))) {
$article->checkin();
}

// If the task was edit or cancel, we go back to the content item
$referer JRequest::getString('referer'JURI::base(), 'post');
$this->setRedirect($referer);
}

/**
* Rates an article
*
* @access public
* @since 1.5
*/
function vote()
{
$url JRequest::getVar('url''''default''string');
$rating JRequest::getVar('user_rating'0'''int');
$id JRequest::getVar('cid'0'''int');

// Get/Create the model
$model = & $this->getModel('Article' );

$model->setId($id);
if ($model->storeVote($rating)) {
$this->setRedirect($urlJText::_('Thanks for rating!'));
} else {
$this->setRedirect($urlJText::_('You already rated this article today!'));
}
}

/**
 * Searches for an item by a key parameter
 *
 * @access public
 * @since 1.5
 */
function findkey()
{
// Initialize variables
$db = & JFactory::getDBO();
$keyref JRequest::getVar('keyref'null'default''cmd');
JRequest::setVar('keyref'$keyref);

// If no keyref left, throw 404
if( empty($keyref) === true ) {
JError::raiseError404JText::_("Key Not Found") );
}

$keyref $db->Quote'%keyref='.$db->getEscaped$keyreftrue ).'%'false );
$query 'SELECT id' .
' FROM #__content' .
' WHERE attribs LIKE '.$keyref;
$db->setQuery($query);
$id = (int) $db->loadResult();

if ($id 0)
{
// Create the view
$view =& $this->getView('article''html');

// Get/Create the model
$model =& $this->getModel('Article' );

// Set the id of the article to display
$model->setId($id);

// Push the model into the view (as default)
$view->setModel($modeltrue);

// Display the view
$view->display();
}
else {
JError::raiseError404JText::_'Key Not Found' ) );
}
}

/**
 * Output the pagebreak dialog
 *
 * @access  public
 * @since  1.5
 */
function ins_pagebreak()
{
// Create the view
$view = & $this->getView('article''html');

// Set the layout
$view->setLayout('pagebreak');

// Display the view
$view->display();
}
}

15
io ho questo nel file content.php

Codice: [Seleziona]
<?php
/**
 * @version $Id: content.php 10381 2008-06-01 03:35:53Z pasamio $
 * @package Joomla
 * @subpackage Content
 * @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.
 */

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

// Require the com_content helper library
require_once(JPATH_COMPONENT.DS.'controller.php');
require_once(
JPATH_COMPONENT.DS.'helpers'.DS.'query.php');
require_once(
JPATH_COMPONENT.DS.'helpers'.DS.'route.php');

// Component Helper
jimport('joomla.application.component.helper');

// Create the controller
$controller = new ContentController();

// Register Extra tasks
$controller->registerTask'new'   'edit' );
$controller->registerTask'apply' 'save' );
$controller->registerTask'apply_new''save' );

// Perform the Request task
$controller->execute(JRequest::getVar('task'null'default''cmd'));
$controller->redirect();

qualcuno sa dove devo mettere mani?

16
Sono riuscito a forzare il sistema di pubblicazione di Joomla!
Adesso gli autori possono pubblicare da soli i loro contenuti! E tutto senza alterare il codice di Joomla. Ho trovato come farlo cambiando il codice del componente mycontent. Le istruzioni sono qui: http://joomlicious.com/index.php?option=com_smf&Itemid=102&topic=146.0

Finalmente!

ma dove lo trovo il componente mycontent.. all'interno di /htdocs/components/ nn l'ho trovo...
ho trovato un com_content ma il file mycontent.php non riesco proprio a trovarlo.

io la versione joomla1.5
help?!

17
??? scusa ma continuo a non capire ... 
è un componente? o che altro? ditemi voi. per favore

18
ciao per quanto riguarda l'URl dovresti mettere solo http://www.localhost/joomla...ma prima devi sistemate il db se non non va...lo hai settato giusto??

tipo database= mysql
nomehost= localhost
nome utente= quello che usi
pw= quella che usi
nome del database= il nome che hai scelto

i parametri nel phpMYADMIN vanno settati uguali

fammi sapere


fammi capire una cosa, visto che ogni volta che lo devo reinstallare non mi ricordo mai come ho fatto la volta prima.

cmq il localhost è ad esempio joomla.it.. giusto?
il nome utente e la password si intende quelli che si usano per ******?

fatemi capire, pleaseeeee....

cmq io prima avevo la versione 1.0, l'ho disistallata (ovvero cancellata) ed ora sto reinstallando la versione 1.5.4 quindi quello che non capisco è come fare a settare o a crearne uno nuovo di db...

spiegatemi bene dall'inizio. grazie

19
scusa l'ignoranza... ma dove lo trovo questo componente?

(l'inglese non lo mastico proprio bene, anzi .. )

20
Gestione utenti e community / lettura e scirttura per utenti
« il: 25 Lug 2008, 20:34:29 »
ciao a tutti, vi spiego il mio problema.
devo fare un sito per il fantacalcio e vorrei che gli utenti
iscritti possono inserire subito la formazione senza dover aspettare il consenso dell'administrator.
e nello stesso tempo vorrei che non possano modificare le altre formazioni ma solo la loro.

devo installare joomla1.5? devo installare CB?  (versione???)

se non sono stato chiaro chiedete. :D

grazie mille

Pagine: [1] 2


Web Design Bolzano Kreatif