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

Pagine: [1]
1
ragazzi vi ho dato il link apposta!

è semplice: create un file jpg del thumb che volete compaia come anteprima del video e copiatela nella cartella /plugins/system/videobox/thumbs


per esempio se il codice del video youtube è 12345abcd allora creerete il file /plugins/system/videobox/thumbs/12345abcd.jpg

spero di essere stato chiaro

ciao
 

2
Joomla! 1.6/1.7/2.5 / Re:Rendere un'immagine jpg dinamica
« il: 11 Set 2013, 13:28:01 »
grazie per l'imbeccata tom, ho usato questo codice e funziona:

Codice: [Seleziona]
<html> <head> <script language="JavaScript"><!-- function refreshIt() { if (!document.images) return; document.images['myCam'].src = 'myCam.gif?' + Math.random(); setTimeout('refreshIt()',5000); // refresh every 5 secs } //--></script> </head> <body onLoad=" setTimeout('refreshIt()',5000)"> <img src="myCam.gif" name="myCam"> </body> </html>

3
Salve a tutti, forse non è una domanda specifica per Joomla! ma utilizzandolo forse qualcuno può darmi una mano.
La mia stazione meteo invia ad intervalli di un minuto un'immagine jpg con i dati raccolti tramite ftp ad una cartella del mio sito. Il problema è che se non si aggiorna la pagina (cancellando la cache immagini del browser), non si vedono i dati aggiornati, cioè il nuovo file jpg caricato (che ha lo stesso nome del precedente: meteo.jpg).
Come posso risolvere?
Grazie

4
Articoli della community / Re:Guida al plugin videobox
« il: 10 Giu 2013, 08:56:48 »
Ciao, il modo più veloce per creare miniature è salvare un fotogramma del video in jpg e metterlo in /plugins/system/videobox/thumbs , ricordati di nominare il file jpg con lo stessso nome del video. per es. se il tuo video youtube è asxUjsF_K la miniatura dovrà chiamarsi asxUjsF_K.jpg  ;)

5
Joomla! 1.6/1.7/2.5 / Re:Link da menu ad ancora
« il: 06 Giu 2013, 11:25:21 »
Grazie per la risposta giovi ma anche col dominio non va all'ancora, visualizza l'articolo dall'inizio..
ps ho provato anche col magicbutton!!!! hehe

6
Joomla! 1.6/1.7/2.5 / Link da menu ad ancora
« il: 06 Giu 2013, 10:25:50 »
Salve forum,

è da qualche giorno che cerco ma senza successo il modo di linkare un'ancora di un articolo ad una voce di menu principale, normalmente in un collegamento interno uso
Codice: [Seleziona]
index.php?option=com_content&view=article&id=xx#ancorama se lo vado ad inserire come link esterno in una voce del menu non funziona.
Potreste aiutarmi a risolvere?

7
Articoli della community / Re:Guida al plugin videobox
« il: 03 Giu 2013, 13:11:11 »
era nelle FAQ del sito produttore, riporto il testo per chi ha lo stesso problema:

Thumbnails are created "on the go" using showthumb.php script. Please make sure that /plugins/system/videobox/showthumb.php file on your server is accessible from client-side. The easiest way to do that is to right-click on thumbnail (in that case no image icon) and select 'Open image URL' to see what error you get.
Most common reasons for errors at this point are:
 
  • If you get error Warning: getimagesize(): http:// wrapper is disabled in the server configuration... when you open thumbnail image URL, then your php configuration is probably blocking access to external data. For thumbnail creation, Videobox must be able to open images from YouTube and Vimeo servers, otherwise it won't work. In most cases, you should set alow_url_fopen=1 in your php configuration. If you for any reason won't do that, you can still add thumbnails for these videos to /plugins/system/videobox/thumbs folder and give them video ID as filename (/plugins/system/videobox/thumbs/xrLx3YJkJqg.jpg for YouTube video with id xrLx3YJkJqg).
  • file /plugins/system/videobox/showthumb.php has wrong permissions (chmod); most servers throw error 500 when you're trying to access file with permissions 766 or 777. Make sure they're set to 755 or 744 (in some cases you want them to be 644 or 655).
  • scripts in /plugins/system/videobox/ folder are not allowed to be run directly; sometimes servers are set to prevent direct execution of scripts in folders other than site root folder. This results in error 500 (or sometimes 403). Check .htaccess file and server settings to make sure you can run scripts located /plugins/system/videobox/ folder.
  • folder /plugins/system/videobox/ is protected and can't be accessed; in that case, you're most likely to get error 403 or 500 when you open showthumb.php file and also you may have some troubles with videobox style. Check .htaccess and server settings to assure this folder can be accessed from client-side.

8
Articoli della community / Re:Guida al plugin videobox
« il: 03 Giu 2013, 11:39:02 »
Ciao e grazie per il tutorial,

avrei una domanda: in modalità galleria è possibile visualizzare le miniature del video (per intenderci il primo fotogramma del video)? Te lo chiedo perchè mi visualizza solo i box neri col tasto play..
grazie per eventuale risposta saluti

9
dalle FAQ del sito produttore:

Thumbnails are created "on the go" using showthumb.php script. Please make sure that /plugins/system/videobox/showthumb.php file on your server is accessible from client-side. The easiest way to do that is to right-click on thumbnail (in that case no image icon) and select 'Open image URL' to see what error you get.
Most common reasons for errors at this point are:
 
  • If you get error Warning: getimagesize(): http:// wrapper is disabled in the server configuration... when you open thumbnail image URL, then your php configuration is probably blocking access to external data. For thumbnail creation, Videobox must be able to open images from YouTube and Vimeo servers, otherwise it won't work. In most cases, you should set alow_url_fopen=1 in your php configuration. If you for any reason won't do that, you can still add thumbnails for these videos to /plugins/system/videobox/thumbs folder and give them video ID as filename (/plugins/system/videobox/thumbs/xrLx3YJkJqg.jpg for YouTube video with id xrLx3YJkJqg).
  • file /plugins/system/videobox/showthumb.php has wrong permissions (chmod); most servers throw error 500 when you're trying to access file with permissions 766 or 777. Make sure they're set to 755 or 744 (in some cases you want them to be 644 or 655).
  • scripts in /plugins/system/videobox/ folder are not allowed to be run directly; sometimes servers are set to prevent direct execution of scripts in folders other than site root folder. This results in error 500 (or sometimes 403). Check .htaccess file and server settings to make sure you can run scripts located /plugins/system/videobox/ folder.
  • folder /plugins/system/videobox/ is protected and can't be accessed; in that case, you're most likely to get error 403 or 500 when you open showthumb.php file and also you may have some troubles with videobox style. Check .htaccess and server settings to assure this folder can be accessed from client-side.

Pagine: [1]


Web Design Bolzano Kreatif