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. owi
    3. Post
    O

    owi

    @owi

    • Profilo
    • Chi segue 0
    • Da chi è seguito 0
    • Discussioni 2
    • Post 15
    • Migliore 0
    • Gruppi 0
    Iscrizione Ultimo Accesso
    Località Romania Età 44
    0
    Reputazione
    16
    Post
    0
    Visite al profilo
    0
    Da chi è seguito
    0
    Chi segue
    User

    Post creati da owi

    • RE: Copyright law

      More examples: 24notizie.com, notizie.net, these have adsense.

      And why would they sue someone who sends them visitors ? They gain traffic from this kind of websites, that's why the publishers are using RSS feeds.

      Notizie.com was registered in 2002.

      I forgot you to ask something. What about the thumbnails ? Almost every XML feed has a thumbnail

      postato in Consulenza Legale e Professioni Web
      O
      owi
    • RE: Copyright law

      Thank you very much Leonov

      This is an example I found: mister-x.it/

      It is imporiting rss feeds from: tuttolegapro, bresciaoggi, varesenews. etc and it has adsense which means that the website has Copyright infringement according to Italian law 633/41, art. 70 (no money can be made out of these quotation and/or excerpts)

      Is it ok if I post only quotes, without using adsense ?

      Have a nice day, Tahnk you again

      postato in Consulenza Legale e Professioni Web
      O
      owi
    • RE: Media queries on the go

      .htaccess:

      RewriteRule ^css_(.)_(.).css css.php?width=$1&height=$2

      Create css.php file:

      <?
      header("Content-type: text/css", true);
      $width=$_GET['width'];
      $height=$_GET['height'];

      print'
      #div{
      width:'.($width/2).'
      }

      ';
      ?>

      Var 2:

      width=50%;
      }

      postato in Coding
      O
      owi
    • RE: Chiedere l'OK di Adsense per un posizionamento?

      NO!

      postato in Google Adsense
      O
      owi
    • RE: Copyright law

      studiolegale-online.net/diritto_informatica_09.php

      The answer is yes.

      Example: 247.libero.it mister-x.it notiziarioitaliano.it

      Testi, scritti, articoli, e-mail - Ogni forma di testo, anche breve, è tutelata dalla normativa sul diritto d'autore e non può essere copiata, riprodotta (anche in altri formati o su supporti diversi), né tantomeno è possibile appropriarsi della sua paternità. L'unica eccezione prevista dalla legge (art. 70 l. 633/41) è quella di consentire il riassunto, la citazione o la riproduzione di brani o parti di opere letterarie (ma non l'intera opera, o una parte compiuta di essa) a scopo di studio, discussione, documentazione o insegnamento, purché vengano citati l'autore e la fonte, e non si agisca a scopo di lucro, sempre che tali citazioni non costituiscano concorrenza all'utilizzazione economica dell'opera stessa. Solo in questa particolare ipotesi si può agire senza il consenso dell'autore.

      postato in Consulenza Legale e Professioni Web
      O
      owi
    • RE: Copyright law

      I mean, getting the rss articles from an italian news website, such as repubblica.it ( rss.feedsportal.com/c/32275/f/438637/index.rss)

      postato in Consulenza Legale e Professioni Web
      O
      owi
    • Copyright law

      Do I have the right to copy a part of an article and publish it on another website, if I post the original source name and a link to the original article ?

      Let's say I save the rss feeds of an website, includind (title, description, image source, link) to database. If I publish the rss feeds on my website (title, description and and image with original source), specifying the source, it would be 100% legal it Italy ?

      Thank you very much, Grazie 🙂

      postato in Consulenza Legale e Professioni Web
      O
      owi
    • RE: Help - italian web market (some questions)

      spazioweb.com is ok ?
      Or i-domini.it ?

      postato in Help Center: consigli per il tuo progetto
      O
      owi
    • RE: Che programma usare?

      wordpress

      postato in Help Center: consigli per il tuo progetto
      O
      owi
    • RE: Help - italian web market (some questions)

      Grazie Valentina 🙂

      Could you recommend me a good webhosting from Italy ? Can I register a domain (.it) if don't have Italian citizenship ?

      postato in Help Center: consigli per il tuo progetto
      O
      owi
    • RE: inviare tramite mail pagina sito come pdf

      if the page from your website in PHP, it should work

      <?
      //rest of code

      print'
      <form action="send.php?link='.$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"].'" method="post">
      Email: <input type="text" name="email" /><br />
      <input type="submit" value="Submit" />
      </form>
      ';

      //rest of code
      ?>

      Create a file send.php and insert the following code:

      <?
      $htmlFile = "$_GET['link']";
      $buffer = file_get_contents($htmlFile);
      $pdf = new HTML2FPDF('P', 'mm', 'Letter');
      $pdf->AddPage();
      $pdf->WriteHTML($buffer);
      $pdf->Output('$_GET['pdflink'].php', 'F');
      mail('$_POST['email']', 'PDF link', 'yoursite/'.$pdf);
      ?>

      postato in Coding
      O
      owi
    • RE: inviare tramite mail pagina sito come pdf

      @yabeforg said:

      ciao, mi puoi spiegare se converte in pdf? non riesco a capire
      No parlare italiano, just understand

      Do you use php for your website ? Cand you send me a PM with your site ?

      postato in Coding
      O
      owi
    • RE: Consigli SEO per sito sul teatro

      Get backlinks for your website:
      -italian web directories

      • bookmarking websites: social-bookmarking-sites-list.com (post your website and a few section from it)
      • add your website in forum signatures

      And you will get a better google rank

      postato in News Ufficiali da Connect.gt
      O
      owi
    • RE: inviare tramite mail pagina sito come pdf

      @yabeforg said:

      Avrei la necessità di creare un bottone per ogni pagina di un sito e far si che venga inviata come un pdf, utilizzando outlook.

      E' una cosa fattibile oppure è fantascienza? :bho:

      Please translate this:

      It's very simple to do this.
      You need to use mail() php function.

      Insert on every age you want to send as a pdf doc: <a href="yoursite.it/send.php?pdflink='.$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"].'"

      Create a file send.php and add this code

      <?
      $htmlFile = "$_GET['pdflink']";
      $buffer = file_get_contents($htmlFile);
      $pdf = new HTML2FPDF('P', 'mm', 'Letter');
      $pdf->AddPage();
      $pdf->WriteHTML($buffer);
      $pdf->Output('$_GET['pdflink']', 'F');
      mail('[email protected]', 'My Subject', $pdf);
      ?>

      postato in Coding
      O
      owi
    • Help - italian web market (some questions)

      Hello, I don't speak italian. Can you help me answering some questions.
      I'm trying to develop a social network in Italy, but I need some info:

      • do Italians love chatting on internet ?
      • do Italians use a forum to get some information ?
      • do you have a website with public statistics about web traffic ?

      Grazie :ciauz:

      postato in Help Center: consigli per il tuo progetto
      O
      owi