Navigazione

    Privacy - Termini e condizioni
    © 2020 Search On Media Group S.r.l.
    • Registrati
    • Accedi
    • CATEGORIES
    • Discussioni
    • Non letti
    • Recenti
    • Hashtags
    • Popolare
    • Utenti
    • Stream
    • Interest
    • Categories
    1. Home
    2. monny77
    3. Post
    M

    monny77

    @monny77

    • Profilo
    • Chi segue 0
    • Da chi è seguito 0
    • Discussioni 9
    • Post 32
    • Migliore 0
    • Gruppi 0
    Iscrizione Ultimo Accesso
    Sito Internet www.diarionascosto.it
    0
    Reputazione
    32
    Post
    0
    Visite al profilo
    0
    Da chi è seguito
    0
    Chi segue
    User

    Post creati da monny77

    • RE: Problema CAPTCHA nei commenti di Cutenews

      Ti ringrazio per la risposta e per lo sbattimento ma ho tagliato la testa al toro e ho cambiato script.
      Ho provato recaptcha(che è comunque uno script gratuito) e con una semplice registrazione(per la key) e seguendo le istruzioni trovate nel forum di Cutenews sono riuscito a farlo funzionare al primo tentativo...
      Lo consiglio a chi come me ha riscontrato problemi nell'istallazione di Captcha.Recaptcha è molto semlice da installare,magari nn altrettanto semplice per gli utenti che commentano ma a livello sicurezza antispam uno dei più efficaci a mio parere....

      Questo è il link della home del programma:

      recaptcha.net/

      Quà le istruzioni d'installazione per Cutenews:

      cutephp.com/forum/index.php?showtopic=24806&st=0#entry100120

      postato in Coding
      M
      monny77
    • RE: Problema CAPTCHA nei commenti di Cutenews

      In che senso,questa è la variabile che devo visualizzare?:?
      Dove la devo visualizzare?

      In "php-captcha.inc.php"?
      Questa variabile è visulizzata ben 7 volte in questo script!
      Perdonami ma sono un pò in confusione...:bho:

      postato in Coding
      M
      monny77
    • RE: Problema CAPTCHA nei commenti di Cutenews

      Prima di tutto grazie per la risposta celere.
      In tutta sincerità dove devo inserire il comando $_SESSION che mi hai detto?
      Questi sono i due script del form captcha:

      captcha.php:
      [php]
      <?php
      // include captcha class
      require('php-captcha.inc.php');

      // define fonts
      $aFonts = array('VeraMoBd.ttf');
      $_SESSION
      // create new image
      $oPhpCaptcha = new PhpCaptcha($aFonts, 200, 60);
      //$oPhpCaptcha->DisplayShadows(true);
      $oPhpCaptcha->UseColour(true);
      $oPhpCaptcha->Create();
      ?>
      [/php]
      php-captcha.inc.php:
      [php]
      <?php

      /************************ Default Options **********************/

      // start a PHP session - this class uses sessions to store the generated
      // code. Comment out if you are calling already from your application
      @session_start();

      // class defaults - change to effect globally

      define('CAPTCHA_SESSION_ID', 'php_captcha');
      define('CAPTCHA_WIDTH', 200); // max 500
      define('CAPTCHA_HEIGHT', 50); // max 200
      define('CAPTCHA_NUM_CHARS', 5);
      define('CAPTCHA_NUM_LINES', 70);
      define('CAPTCHA_CHAR_SHADOW', false);
      define('CAPTCHA_OWNER_TEXT', '');
      define('CAPTCHA_CHAR_SET', ''); // defaults to A-Z
      define('CAPTCHA_CASE_INSENSITIVE', true);
      define('CAPTCHA_BACKGROUND_IMAGES', '');
      define('CAPTCHA_MIN_FONT_SIZE', 16);
      define('CAPTCHA_MAX_FONT_SIZE', 25);
      define('CAPTCHA_USE_COLOUR', false);
      define('CAPTCHA_FILE_TYPE', 'jpeg');
      define('CAPTCHA_FLITE_PATH', '/usr/bin/flite');
      define('CAPTCHA_AUDIO_PATH', '/tmp/'); // must be writeable by PHP process

      /************************ End Default Options **********************/

      // don't edit below this line (unless you want to change the class!)

      class PhpCaptcha {
      var $oImage;
      var $aFonts;
      var $iWidth;
      var $iHeight;
      var $iNumChars;
      var $iNumLines;
      var $iSpacing;
      var $bCharShadow;
      var $sOwnerText;
      var $aCharSet;
      var $bCaseInsensitive;
      var $vBackgroundImages;
      var $iMinFontSize;
      var $iMaxFontSize;
      var $bUseColour;
      var $sFileType;
      var $sCode = '';

        function PhpCaptcha(
           $aFonts, // array of TrueType fonts to use - specify full path
           $iWidth = CAPTCHA_WIDTH, // width of image
           $iHeight = CAPTCHA_HEIGHT // height of image
        ) {
           // get parameters
           $this->aFonts = $aFonts;
           $this->SetNumChars(CAPTCHA_NUM_CHARS);
           $this->SetNumLines(CAPTCHA_NUM_LINES);
           $this->DisplayShadow(CAPTCHA_CHAR_SHADOW);
           $this->SetOwnerText(CAPTCHA_OWNER_TEXT);
           $this->SetCharSet(CAPTCHA_CHAR_SET);
           $this->CaseInsensitive(CAPTCHA_CASE_INSENSITIVE);
           $this->SetBackgroundImages(CAPTCHA_BACKGROUND_IMAGES);
           $this->SetMinFontSize(CAPTCHA_MIN_FONT_SIZE);
           $this->SetMaxFontSize(CAPTCHA_MAX_FONT_SIZE);
           $this->UseColour(CAPTCHA_USE_COLOUR);
           $this->SetFileType(CAPTCHA_FILE_TYPE);   
           $this->SetWidth($iWidth);
           $this->SetHeight($iHeight);
        }
        
        function CalculateSpacing() {
           $this->iSpacing = (int)($this->iWidth / $this->iNumChars);
        }
        
        function SetWidth($iWidth) {
           $this->iWidth = $iWidth;
           if ($this->iWidth > 500) $this->iWidth = 500; // to prevent perfomance impact
           $this->CalculateSpacing();
        }
        
        function SetHeight($iHeight) {
           $this->iHeight = $iHeight;
           if ($this->iHeight > 200) $this->iHeight = 200; // to prevent performance impact
        }
        
        function SetNumChars($iNumChars) {
           $this->iNumChars = $iNumChars;
           $this->CalculateSpacing();
        }
        
        function SetNumLines($iNumLines) {
           $this->iNumLines = $iNumLines;
        }
        
        function DisplayShadow($bCharShadow) {
           $this->bCharShadow = $bCharShadow;
        }
        
        function SetOwnerText($sOwnerText) {
           $this->sOwnerText = $sOwnerText;
        }
        
        function SetCharSet($vCharSet) {
           // check for input type
           if (is_array($vCharSet)) {
              $this->aCharSet = $vCharSet;
           } else {
              if ($vCharSet != '') {
                 // split items on commas
                 $aCharSet = explode(',', $vCharSet);
              
                 // initialise array
                 $this->aCharSet = array();
              
                 // loop through items 
                 foreach ($aCharSet as $sCurrentItem) {
                    // a range should have 3 characters, otherwise is normal character
                    if (strlen($sCurrentItem) == 3) {
                       // split on range character
                       $aRange = explode('-', $sCurrentItem);
                    
                       // check for valid range
                       if (count($aRange) == 2 && $aRange[0] < $aRange[1]) {
                          // create array of characters from range
                          $aRange = range($aRange[0], $aRange[1]);
                       
                          // add to charset array
                          $this->aCharSet = array_merge($this->aCharSet, $aRange);
                       }
                    } else {
                       $this->aCharSet[] = $sCurrentItem;
                    }
                 }
              }
           }
        }
        
        function CaseInsensitive($bCaseInsensitive) {
           $this->bCaseInsensitive = $bCaseInsensitive;
        }
        
        function SetBackgroundImages($vBackgroundImages) {
           $this->vBackgroundImages = $vBackgroundImages;
        }
        
        function SetMinFontSize($iMinFontSize) {
           $this->iMinFontSize = $iMinFontSize;
        }
        
        function SetMaxFontSize($iMaxFontSize) {
           $this->iMaxFontSize = $iMaxFontSize;
        }
        
        function UseColour($bUseColour) {
           $this->bUseColour = $bUseColour;
        }
        
        function SetFileType($sFileType) {
           // check for valid file type
           if (in_array($sFileType, array('gif', 'png', 'jpeg'))) {
              $this->sFileType = $sFileType;
           } else {
              $this->sFileType = 'jpeg';
           }
        }
        
        function DrawLines() {
           for ($i = 0; $i < $this->iNumLines; $i++) {
              // allocate colour
              if ($this->bUseColour) {
                 $iLineColour = imagecolorallocate($this->oImage, rand(100, 250), rand(100, 250), rand(100, 250));
              } else {
                 $iRandColour = rand(100, 250);
                 $iLineColour = imagecolorallocate($this->oImage, $iRandColour, $iRandColour, $iRandColour);
              }
              
              // draw line
              imageline($this->oImage, rand(0, $this->iWidth), rand(0, $this->iHeight), rand(0, $this->iWidth), rand(0, $this->iHeight), $iLineColour);
           }
        }
        
        function DrawOwnerText() {
           // allocate owner text colour
           $iBlack = imagecolorallocate($this->oImage, 0, 0, 0);
           // get height of selected font
           $iOwnerTextHeight = imagefontheight(2);
           // calculate overall height
           $iLineHeight = $this->iHeight - $iOwnerTextHeight - 4;
           
           // draw line above text to separate from CAPTCHA
           imageline($this->oImage, 0, $iLineHeight, $this->iWidth, $iLineHeight, $iBlack);
           
           // write owner text
           imagestring($this->oImage, 2, 3, $this->iHeight - $iOwnerTextHeight - 3, $this->sOwnerText, $iBlack);
           
           // reduce available height for drawing CAPTCHA
           $this->iHeight = $this->iHeight - $iOwnerTextHeight - 5;
        }
        
        function GenerateCode() {
           // reset code
           $this->sCode = '';
           
           // loop through and generate the code letter by letter
           for ($i = 0; $i < $this->iNumChars; $i++) {
              if (count($this->aCharSet) > 0) {
                 // select random character and add to code string
                 $this->sCode .= $this->aCharSet[array_rand($this->aCharSet)];
              } else {
                 // select random character and add to code string
                 $this->sCode .= chr(rand(65, 90));
              }
           }
           
           // save code in session variable
           if ($this->bCaseInsensitive) {
              $_SESSION[CAPTCHA_SESSION_ID] = strtoupper($this->sCode);
           } else {
              $_SESSION[CAPTCHA_SESSION_ID] = $this->sCode;
           }
        }
        
        function DrawCharacters() {
           // loop through and write out selected number of characters
           for ($i = 0; $i < strlen($this->sCode); $i++) {
              // select random font
              $sCurrentFont = $this->aFonts[array_rand($this->aFonts)];
              
              // select random colour
              if ($this->bUseColour) {
                 $iTextColour = imagecolorallocate($this->oImage, rand(0, 100), rand(0, 100), rand(0, 100));
              
                 if ($this->bCharShadow) {
                    // shadow colour
                    $iShadowColour = imagecolorallocate($this->oImage, rand(0, 100), rand(0, 100), rand(0, 100));
                 }
              } else {
                 $iRandColour = rand(0, 100);
                 $iTextColour = imagecolorallocate($this->oImage, $iRandColour, $iRandColour, $iRandColour);
              
                 if ($this->bCharShadow) {
                    // shadow colour
                    $iRandColour = rand(0, 100);
                    $iShadowColour = imagecolorallocate($this->oImage, $iRandColour, $iRandColour, $iRandColour);
                 }
              }
              
              // select random font size
              $iFontSize = rand($this->iMinFontSize, $this->iMaxFontSize);
              
              // select random angle
              $iAngle = rand(-30, 30);
              
              // get dimensions of character in selected font and text size
              $aCharDetails = imageftbbox($iFontSize, $iAngle, $sCurrentFont, $this->sCode*, array());
              
              // calculate character starting coordinates
              $iX = $this->iSpacing / 4 + $i * $this->iSpacing;
              $iCharHeight = $aCharDetails[2] - $aCharDetails[5];
              $iY = $this->iHeight / 2 + $iCharHeight / 4; 
              
              // write text to image
              imagefttext($this->oImage, $iFontSize, $iAngle, $iX, $iY, $iTextColour, $sCurrentFont, $this->sCode*, array());
              
              if ($this->bCharShadow) {
                 $iOffsetAngle = rand(-30, 30);
                 
                 $iRandOffsetX = rand(-5, 5);
                 $iRandOffsetY = rand(-5, 5);
                 
                 imagefttext($this->oImage, $iFontSize, $iOffsetAngle, $iX + $iRandOffsetX, $iY + $iRandOffsetY, $iShadowColour, $sCurrentFont, $this->sCode*, array());
              }
           }
        }
        
        function WriteFile($sFilename) {
           if ($sFilename == '') {
              // tell browser that data is jpeg
              header("Content-type: image/$this->sFileType");
           }
           
           switch ($this->sFileType) {
              case 'gif':
                 $sFilename != '' ? imagegif($this->oImage, $sFilename) : imagegif($this->oImage);
                 break;
              case 'png':
                 $sFilename != '' ? imagepng($this->oImage, $sFilename) : imagepng($this->oImage);
                 break;
              default:
                 $sFilename != '' ? imagejpeg($this->oImage, $sFilename) : imagejpeg($this->oImage);
           }
        }
        
        function Create($sFilename = '') {
           // check for required gd functions
           if (!function_exists('imagecreate') || !function_exists("image$this->sFileType") || ($this->vBackgroundImages != '' && !function_exists('imagecreatetruecolor'))) {
              return false;
           }
           
           // get background image if specified and copy to CAPTCHA
           if (is_array($this->vBackgroundImages) || $this->vBackgroundImages != '') {
              // create new image
              $this->oImage = imagecreatetruecolor($this->iWidth, $this->iHeight);
              
              // create background image
              if (is_array($this->vBackgroundImages)) {
                 $iRandImage = array_rand($this->vBackgroundImages);
                 $oBackgroundImage = imagecreatefromjpeg($this->vBackgroundImages[$iRandImage]);
              } else {
                 $oBackgroundImage = imagecreatefromjpeg($this->vBackgroundImages);
              }
              
              // copy background image
              imagecopy($this->oImage, $oBackgroundImage, 0, 0, 0, 0, $this->iWidth, $this->iHeight);
              
              // free memory used to create background image
              imagedestroy($oBackgroundImage);
           } else {
              // create new image
              $this->oImage = imagecreate($this->iWidth, $this->iHeight);
           }
           
           // allocate white background colour
           imagecolorallocate($this->oImage, 255, 255, 255);
           
           // check for owner text
           if ($this->sOwnerText != '') {
              $this->DrawOwnerText();
           }
           
           // check for background image before drawing lines
           if (!is_array($this->vBackgroundImages) && $this->vBackgroundImages == '') {
              $this->DrawLines();
           }
           
           $this->GenerateCode();
           $this->DrawCharacters();
           
           // write out image to file or browser
           $this->WriteFile($sFilename);
           
           // free memory used in creating image
           imagedestroy($this->oImage);
           
           return true;
        }
        
        // call this method statically
        function Validate($sUserCode, $bCaseInsensitive = true) {
           if ($bCaseInsensitive) {
              $sUserCode = strtoupper($sUserCode);
           }
           
           if (!empty($_SESSION[CAPTCHA_SESSION_ID]) && $sUserCode == $_SESSION[CAPTCHA_SESSION_ID]) {
              // clear to prevent re-use
              unset($_SESSION[CAPTCHA_SESSION_ID]);
              
              return true;
           }
           
           return false;
        }
      

      }

      // this class will only work correctly if a visual CAPTCHA has been created first using PhpCaptcha
      class AudioPhpCaptcha {
      var $sFlitePath;
      var $sAudioPath;
      var $sCode;

        function AudioPhpCaptcha(
           $sFlitePath = CAPTCHA_FLITE_PATH, // path to flite binary
           $sAudioPath = CAPTCHA_AUDIO_PATH // the location to temporarily store the generated audio CAPTCHA
        ) {
           $this->SetFlitePath($sFlitePath);
           $this->SetAudioPath($sAudioPath);
           
           // retrieve code if already set by previous instance of visual PhpCaptcha
           if (isset($_SESSION[CAPTCHA_SESSION_ID])) {
              $this->sCode = $_SESSION[CAPTCHA_SESSION_ID];
           }
        }
        
        function SetFlitePath($sFlitePath) {
           $this->sFlitePath = $sFlitePath;
        }
        
        function SetAudioPath($sAudioPath) {
           $this->sAudioPath = $sAudioPath;
        }
        
        function Mask($sText) {
           $iLength = strlen($sText);
           
           // loop through characters in code and format
           $sFormattedText = '';
           for ($i = 0; $i < $iLength; $i++) {
              // comma separate all but first and last characters
              if ($i > 0 && $i < $iLength - 1) {
                 $sFormattedText .= ', ';
              } elseif ($i == $iLength - 1) { // precede last character with "and"
                 $sFormattedText .= ' and ';
              }
              $sFormattedText .= $sText*;
           }
           
           $aPhrases = array(
              "The %1\$s characters are as follows: %2\$s",
              "%2\$s, are the %1\$s letters",
              "Here are the %1\$s characters: %2\$s",
              "%1\$s characters are: %2\$s",
              "%1\$s letters: %2\$s"
           );
           
           $iPhrase = array_rand($aPhrases);
           
           return sprintf($aPhrases[$iPhrase], $iLength, $sFormattedText);
        }
        
        function Create() {
           $sText = $this->Mask($this->sCode);
           $sFile = md5($this->sCode.time());
           
           // create file with flite
           shell_exec("$this->sFlitePath -t \"$sText\" -o $this->sAudioPath$sFile.wav");
           
           // set headers
           header('Content-type: audio/x-wav');
           header("Content-Disposition: attachment;filename=$sFile.wav");
           
           // output to browser
           echo file_get_contents("$this->sAudioPath$sFile.wav");
           
           // delete temporary file
           @unlink("$this->sAudioPath$sFile.wav");
        }
      

      }

      // example sub class
      class PhpCaptchaColour extends PhpCaptcha {
      function PhpCaptchaColour($aFonts, $iWidth = CAPTCHA_WIDTH, $iHeight = CAPTCHA_HEIGHT) {
      // call parent constructor
      parent::PhpCaptcha($aFonts, $iWidth, $iHeight);

           // set options
           $this->UseColour(true);
        }
      

      }
      ?>
      [/php]

      Che devo fare??????????????????

      postato in Coding
      M
      monny77
    • Problema CAPTCHA nei commenti di Cutenews

      Ciao tutti
      Io sto usando Cutenews 1.4.5 (quindi l'ultima relese)da un pò di tempo ormai e chiaramento nn sono sfuggito allo Spam.
      Volevo sapere se qualcuno nei commenti usa captcha su cutenews e se sì come ha fatto a farlo funzionare?Io sto inpazzendo da 2 giorni(:x)e non sono riuscito a risolvere nulla mi da sempre questo tipo di errore dopo aver inserito il codice:

      Please enter the characters from the image.
      go back

      e quindi nn riesco a pubblicare il commento...
      Ho praticamente inparato a memoria tutto il forum di cutenews ma non sono riuscito a venirne a capo....help me
      Spero di essermi spiegato al meglio,grazie anticipatamente
      per l'aiuto.
      Ciao

      postato in Coding
      M
      monny77
    • RE: Tasto Canc come Windows...dov'è?

      Prova con "mela + backspace(come avevo scritto nel precedente post)"sul mio MacBook pro funge così il tasto "canc" di Winzoz...;)

      postato in Tutti i Software
      M
      monny77
    • RE: Tasto Canc come Windows...dov'è?

      Sul mio Mb pro bastava fare "Mela + backspace"

      Taglia = "Mela + x"
      Copia = "Mela + c"
      Incolla = "Mela + v"

      E l'effetto Zoom molto simile a quello visto sul nuovo MB air....
      "ctrl + due dita sul track pad che spingono verso l'alto" :eheh:

      Spero di essere stato utile...

      postato in Tutti i Software
      M
      monny77
    • Problema Cutenews e accento nella pagina degli RSS

      Ciao a tutti
      Sono di nuovo qui a chiedere aiuto con questo script(cutenews)di gestione news scritto in .php
      Vengo al dunque,praticamente il problema degli accenti già mi si era presentato quando postavo una notizia nel sito ma dopo un pò di nottate insonne e il vostro aiuto avevo risolto il problema,ma non mi ero accorto(che rinco...)che negli RSS il problema invece persiste :bho:.
      Questo è il risultato:

      L´Arte della Sicilia (invece dovrebbe essere"L'Arte della Sicilia")

      Ho anche controllato il tipo di encoding ed è settato su ISO..... di seguito posto il file rss.config.php:

      <?PHP

      //RSS Configurations (Auto Generated file)

      $rss_news_include_url = "miosito.com/index.php";

      $rss_title = "Bevilo.com La guida ai locali di Roma costruita da te ";

      $rss_encoding = "ISO-8859-1";

      $rss_language = "it";

      ?>

      Non capisco per quale motivo nel resto del sito non mi da problemi invece in questa pagina persiste è come se la pagina non decodificasse il comando "&acute".
      Di seguito posto anche la pagina rss.php per una maggiore chiarezza:

      <?PHP
      include('data/rss_config.php');

      if(!isset($rss_news_include_url) or !$rss_news_include_url or $rss_news_include_url == ''){

      die("The RSS is not configured.<br>Please do this from: <strong>CuteNews > Options > Implementation Wizards > RSS</strong>");

      }

      header("Content-type: text/xml");

      echo"<?xml version="1.0" encoding="$rss_encoding" ?>
      <?xml-stylesheet type="text/css" href="skins/rss_style.css" ?>
      <rss version="2.0" >
      <channel>
      <title>$rss_title</title>
      <link>$rss_news_include_url</link>
      <language>$rss_language</language>
      <description></description>
      <!-- <docs>This is an RSS 2.0 file intended to be viewed in a newsreader or syndicated to another site. For more information on RSS check : feedburner.com/fb/a/aboutrss</docs> -->
      <generator>CuteNews</generator>
      ";

      if(!$_GET[number] or $_GET[number] == ''){ $number = 10;}else{ $number = $_GET[number];}
      if(!$_GET[only_active] or $_GET[only_active] == ''){ $only_active = TRUE;}else{ $only_active = $_GET[only_active];}

      $template="rss";
      include("show_news.php");

      echo"</channel></rss>";
      ?>

      Grazie in anticipo per l'aiuto......:?

      postato in Coding
      M
      monny77
    • RE: Usare il cell. come telecomando con AnyRemote

      Ti consiglio di scaricare i file con estensione .rpm .li converti in .deb e l' installi! Anche a me i file .tr.gz hanno dato dei problemi nel compilarli....

      postato in Tutti i Software
      M
      monny77
    • RE: Usare il cell. come telecomando con AnyRemote

      Ne ho provati tanti ma ribadisco che questo è l'unico che sono riuscito a far funzionare e sta volta lo posso dire.Infatti seguendo le immagini riportate sul sito ufficiale:
      http://anyremote.sourceforge.net/g-shots.html
      sono riuscito ha configurarlo al meglio ed a farlo andare sia con Totem che con Vlc.
      Molto importante è all'inizio quando vi chiede dove è la cartella con i file .conf e dovrete settarlo come da immagini riportate nel link precedente...
      Un saluto e alla prossima grana....

      postato in Tutti i Software
      M
      monny77
    • Usare il cell. come telecomando con AnyRemote

      Salve a tutti sono incappato nell'ennesimo problema :arrabbiato:
      Sto provando a settare im mio Nokia N80 come telecomando bluetooth per usarlo sul pc con ubuntu 7.10 e dopo svariate prove e programmi quello più completo mi è sembrato "anyremote" però purtroppo nn posso dire la stessa cosa per la sua funzionalita!
      Ho anche provato a seguire questa guida che ho trovato in internet:
      http://divilinux.wordpress.com/2007/05/13/telecomando-bluetooth/
      ma con scarsi risultati...:?
      Da quello che sono riuscito a capire,il problema dovrebbe essere che il cell. non riesce a pingare con il Pc e quindi ad avviare delle aplicazioni(premetto che il bluetooth funziona alla perfezione nello scambio di file da/a il Pc)
      Nessuno mi può aiutare a configurare questo software per il mio cell,help me, oppure magari consigliarmi degli altri programmi buoni(anche se li ho provati quasi tutti),grazie in anticipo.

      postato in Tutti i Software
      M
      monny77
    • Problema visualizzazione pulsanti con VLC in streaming

      Salve a tutti
      Ho un problema con lo streaming di Vlc e cioè,quando visualizzo un qualsiasi filmato da browser(premetto che ho aggiornato Ubuntu alla ver. 7.10 e come browser uso Mozilla ed Epiphany)nn mi visualizza i pulsanti per la gestione del file,play/pausa,volume on/off e la barra di scorrimento del file.Inoltre se provo a clikkare con il destro sullo file che sto visualizzando nn si apre nessun menù oppure se provo a fare doppio clik per ingrandire lo schermo niente non funziona!
      Premetto che il file si vede bene e si sente ma nn posso interagire in nessun modo!!!
      Como posso risolvere il problema?
      Grazie in anticipo a tutti per le risposte.

      postato in YouTube
      M
      monny77
    • RE: Problema streaming con Mplayer su Mozilla

      Proposito,alle persone che si staranno chiedendo:xchè semplicemente nn avvia Vlc da Menù e inserisce l'indirizzo in "Apri flusso di rete",etc,etc.
      Xchè purtroppo nn FUNZIONA nn chiedetemi il motivo ne sono totalmente all'oscuro....
      P.s.nn chiudete il terminale dopo aver lanciato il programma xchè si chiuderebbe anche il programma.....

      postato in YouTube
      M
      monny77
    • RE: Problema streaming con Mplayer su Mozilla

      Finalmente sono giunto ad una parziale soluzione del problema.
      Prima di tutto ho tolto Mplayer e ho installato totem-gstreamer direttamente da synaptic con i rispettivi plugin per mozilla e diciamo che alcuni filmati ora riesco ha vederli!
      Per quelli che nn sono riuscito a vederli nel lettore predefinito di mozilla(Totem)tipo:http://www.rai.tv/mpplaypodcast/0,,RaiTre-Chetempochefa^7^37367,00.html
      Ho trovato finalmente una soluzione:aprire il filmato direttamente nel lettore avviandolo da terminale.
      Cioè:Nella paggina dove visualizzate il filmato se avete Totem clikkate col destro nel riquadro del lettore e andate su copia posizione.Adesso avviate un terminale e come utente normale digitate: vlc mms://rntlivewm.rai.it/raiuno/siparietti/buona_visioneMed_Progautopromo.wmv
      e clikkate invio.(ho scelto "vlc"xchè è il migliore,bufferizza più velocemente,apre la maggior parte dei file e nn da problemi con l'uscita audio)
      Ed a questo punto LA LUCE..........finalmente sono riuscito ad aprire la maggior parte dei parte dei filmati anche se con svariati escamotage....

      postato in YouTube
      M
      monny77
    • RE: Problema streaming con Mplayer su Mozilla

      All'inizio avevo installato un 64bit,ma ho dovuto mollare subito,nn riuscivo neanche ad installare i plugin in flash...
      Ho formattato ed installato feisty a 32bit,tutto più o meno bene fin quando sono incappato in una delle installazioni più facili di winzzoz e lì sono finito in un baratro di disperazione....
      Ad esempio a questo link:
      http://www.angelonembrini.it/filmati_scaricare.htm
      Non riesco a vedere nulla,mozilla con mplayer carica,carica(praticamente sta in continuo trasferimento dati dal sito)ma nn apre nulla...
      Come posso risolvere?Le stesse pagine riesco a vederle tranquillamente con Winzzoz!!!

      postato in YouTube
      M
      monny77
    • RE: Problema streaming con Mplayer su Mozilla

      Ciao,
      facendo una ricerca in internet anche altri avevano il mio stesso problema sia con vlc,che con Totem ed hanno risolto installando Mplayer e i plugin per mozilla,possibile che sono destinato a vedere solo i filmati in flash,magari sbaglio semplicemente qualche settaggio,Forse è per quello che tente di partire ma poi si stoppa???
      P.s. Condoglianze per il disco...

      postato in YouTube
      M
      monny77
    • Problema streaming con Mplayer su Mozilla

      Ciao a tutti,
      Ho un problema con mozilla e il lettore integrato Mplayer,come sistema operativo uso Ubuntu f.f. 7.04.
      In pratica quando cerco di aprire un file video incluso in una pagina web di mozilla,il player comincia a caricare sembra che stia per partire ed invece scrive "stopped",rispingo su play e si riferma poco dopo.Ho installato tutti i vari plugin aggiornati,sia per mozilla che per Mplayer e complilati in questo modo:

      È necessario linkare i plugin in Firefox, dato che vengono installati solo per Mozilla, loggarsi in un terminale come root:

      cd /usr/lib/firefox/plugins

      ed effettuate i link simbolici:

      ln -s ../../mozilla/plugins/mplayerplug-in.so

      ln -s ../../mozilla/plugins/mplayerplug-in.xpt

      ln -s ../../mozilla/plugins/mplayerplug-in-gmp.so

      ln -s ../../mozilla/plugins/mplayerplug-in-gmp.xpt

      ln -s ../../mozilla/plugins/mplayerplug-in-qt.so

      ln -s ../../mozilla/plugins/mplayerplug-in-qt.xpt

      ln -s ../../mozilla/plugins/mplayerplug-in-rm.so

      ln -s ../../mozilla/plugins/mplayerplug-in-rm.xpt

      ln -s ../../mozilla/plugins/mplayerplug-in-wmp.so

      ln -s ../../mozilla/plugins/mplayerplug-in-wmp.xpt

      Riavviate Firefox e controllate se sono correttamente installati, digitando nella barra indirizzi:
      about :plugins

      Ho controllato e sono installati tutti correttamente se volete poi vi posto la pag. dei pluginns.
      Sono due giorni che non so dove sbattere la testa ho anche provato con Vlc e Totem con i rispettivi plugins per mozilla ma niente da fare.
      Help me,grazie anticipatamente.

      postato in YouTube
      M
      monny77
    • RE: Ubuntu e gestione due schede video nvidia per tv-out

      :vaiii::vaiii::vaiii:
      E come dico sempre chi fà da se fà per 3...
      Dopo ore e ore,giorni e giorni di duri smanettamenti ce l'ho fatto...Tv-out a colori!

      Veniamo alla soluzione,aprite da terminale xorg.conf con questo comando:

      sudo gedit /etc/X11/xorg.conf

      Andate nella seconda sezione di"device"cioè quella che si riferisce alla seconda scheda(quella con il tv-out)ed inserite questa opzione alla fine dei dati prima del End...:

      *** Option ?TVStandard? ?PAL-B?

      ***Salvate e chiudete l'editor riavviate il server x con "CTRL-ALT-BACKSPACE" e magicamente vedrete il vostro Desktop sul tv a colori..........si,si,si,si,si,si,si...
      Un ringraziamento molto sentito a me stesso.....:fumato:

      postato in Tutti i Software
      M
      monny77
    • RE: Ubuntu e gestione due schede video nvidia per tv-out

      Grazie comunque(anche un semplice"mi dispiace ma nn possiamo aiutarti"sarebbe stato gradito)
      Comunque torniamo al problema che semi risolto e dico così xchè vedo l'immagine sulla Tv ma in bianco e nero!!!
      Prima di tutto dobbiamo abilitare i "driver con restrizioni" da:

      Sistema-Amministrazione-gestione driver con restrizioni

      In secondo dovete ablitare da terminale i moduli Xorg:

      sudo apt-get install xserver-xorg-dev

      Poi aprite "nvidia-setting"sempre da terminale e digitate:

      sudo nvidia-setting

      Adesso andate in "X server Display configuration"e cliccate il secondo monitor e cliccate su configure.
      Settate a vostro piacere le dimensioni del display e cliccate su "Apply" e dopo di che "save the x configuration file" e salvate,uscite e riavviate i server X con i comandi:

      Ctrl-Alt-Bakspace(tasto cancella indietro)

      A questo punto vi loggate e si dovrebbe vedere il desktop nella Tv.
      E adesso viene il bello perchè ancora non sono riuscito a risolvere il problema del display in B/N anche se penso che il problema e nella frequenza hrz in cui mi attiva la modalità secondo display,che è di 60 hrz quando dovrebbe essere di 56 hrz o 50 hrz.Purtroppo nel setting di prima nn si riesce a modificare la frequenza oppure io nn l'ho ancora trovato,hò provato anche a cercare nel file xorg.conf ma niente da fare non sò dove metere mano...
      Se dovessi risolvere il problema sarei ben felice di postare i risultati...
      P.S. Si accettano consigli...........

      postato in Tutti i Software
      M
      monny77
    • RE: Ubuntu e gestione due schede video nvidia per tv-out

      Nn c'è nessuno che mi può aiutare...Help,help,help me...
      Non so più dove sbattere la testa,a parte :arrabbiato:

      postato in Tutti i Software
      M
      monny77
    • Ubuntu e gestione due schede video nvidia per tv-out

      Ciao a tutti
      Premetto che su Winzozz funzionava tutto alla perfezione!!!
      Sto da poco usando Ubuntu 7.04 e ho riscontrato dei problemi nel settare il tv-out.:x
      Come scheda video ho una nvidia g-force 6100 inclusa nella M.B. e come seconda scheda video una nvidia "g-force pcx 6200 le" con tv-out.
      Vengo al dunque,vorrei usare la mia seconda scheda video pci x-press con luscita per il tv-out per vedere sulla mia tv i film.
      Ho cercato in internet ma si riferiscono ad una sola scheda video ma nel dubbio ho provato comunque ed il risultato lo potete imaginare...
      Da "Sistema-Preferenze-Informazione hardware" la seconda scheda video la riconosce e visualizza le sue caratteristiche ma nn sò come farla funzionare per appunto il tv-out!
      Smanettando nel file xorg.conf sinceramente parlando non so propio dove mettere mano :?quindi chiedo il vostro disperato aiuto.....
      Di seguito posto il contenuto del mio file "xorg.conf":

      /etc/X11/xorg.conf (xorg X Window System server configuration file)

      This file was generated by dexconf, the Debian X Configuration tool, using

      values from the debconf database.

      Edit this file with caution, and see the xorg.conf(5) manual page.

      (Type "man xorg.conf" at the shell prompt.)

      This file is automatically updated on xserver-xorg package upgrades only

      if it has not been modified since the last upgrade of the xserver-xorg

      package.

      If you have edited this file but would like it to be automatically updated

      again, run the following command:

      sudo dpkg-reconfigure -phigh xserver-xorg

      Section "Files"
      Fontpath "/usr/share/fonts/X11/misc"
      Fontpath "/usr/share/fonts/X11/cyrillic"
      Fontpath "/usr/share/fonts/X11/100dpi/:unscaled"
      Fontpath "/usr/share/fonts/X11/75dpi/:unscaled"
      Fontpath "/usr/share/fonts/X11/Type1"
      Fontpath "/usr/share/fonts/X11/100dpi"
      Fontpath "/usr/share/fonts/X11/75dpi"
      # path to defoma fonts
      Fontpath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
      EndSection

      Section "Module"
      Load "i2c"
      Load "bitmap"
      Load "ddc"
      Load "extmod"
      Load "freetype"
      Load "glx"
      Load "int10"
      Load "vbe"
      EndSection

      Section "InputDevice"
      Identifier "Generic Keyboard"
      Driver "kbd"
      Option "CoreKeyboard"
      Option "XkbRules" "xorg"
      Option "XkbModel" "pc105"
      Option "XkbLayout" "it"
      EndSection

      Section "InputDevice"
      Identifier "Configured Mouse"
      Driver "mouse"
      Option "CorePointer"
      Option "Device" "/dev/input/mice"
      Option "Protocol" "ImPS/2"
      Option "ZAxisMapping" "4 5"
      Option "Emulate3Buttons" "true"
      EndSection

      Section "InputDevice"
      Driver "wacom"
      Identifier "stylus"
      Option "Device" "/dev/input/wacom"
      Option "Type" "stylus"
      Option "ForceDevice" "ISDV4"# Tablet PC ONLY
      EndSection

      Section "InputDevice"
      Driver "wacom"
      Identifier "eraser"
      Option "Device" "/dev/input/wacom"
      Option "Type" "eraser"
      Option "ForceDevice" "ISDV4"# Tablet PC ONLY
      EndSection

      Section "InputDevice"
      Driver "wacom"
      Identifier "cursor"
      Option "Device" "/dev/input/wacom"
      Option "Type" "cursor"
      Option "ForceDevice" "ISDV4"# Tablet PC ONLY
      EndSection

      Section "Device"
      Identifier "nVidia Corporation C51G [GeForce 6100]"
      Driver "nvidia"
      Busid "PCI:0:5:0"
      Option "AddARGBVisuals" "True"
      Option "AddARGBGLXVisuals" "True"
      Option "NoLogo" "True"
      EndSection

      Section "Monitor"
      Identifier "SyncMaster"
      Option "DPMS"
      EndSection

      Section "Screen"
      Identifier "Default Screen"
      Device "nVidia Corporation C51G [GeForce 6100]"
      Monitor "SyncMaster"
      Defaultdepth 24
      SubSection "Display"
      Depth 1
      Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
      EndSubSection
      SubSection "Display"
      Depth 4
      Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
      EndSubSection
      SubSection "Display"
      Depth 8
      Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
      EndSubSection
      SubSection "Display"
      Depth 15
      Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
      EndSubSection
      SubSection "Display"
      Depth 16
      Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
      EndSubSection
      SubSection "Display"
      Depth 24
      Modes "1280x1024" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
      EndSubSection
      EndSection

      Section "ServerLayout"
      Identifier "Default Layout"
      screen "Default Screen"
      Inputdevice "Generic Keyboard"
      Inputdevice "Configured Mouse"
      Inputdevice "stylus" "SendCoreEvents"
      Inputdevice "cursor" "SendCoreEvents"
      Inputdevice "eraser" "SendCoreEvents"
      EndSection

      Section "DRI"
      Mode 0666
      EndSection

      Mi ero dimenticato di dire che avevo già attivato i driver nvidia da "Gestione driver con restrizioni" che sono stati utilissimi per la scheda video sulla M.B. per usare come risoluzione 1280x1024,ma non so se siano utili per la seconda scheda viseo e per il tv-out!?
      A questo punto chiedo aiuto perchè non so veramente dove sbattere la testa!!
      Grazie anticipatamente dell'aiuto....

      postato in Tutti i Software
      M
      monny77