Forum Index > Internet > Webmasters

#0 by castean4ik (Engineer) (0 mesaje) at 2012-04-08 17:13:37 (627 săptămâni în urmă) - [Link]Top

Topicul dat este destinat discuţiilor,sfaturilor,schimb de experienţă şi ajutor referitor la întrebări ce ţin de întreaga activitate a WebMasterilor din comunitatea TMD.

Webmaster(Wiki)
A webmaster (from web and master),[1] also called a web architect, web developer, site author, or website administrator, is a person responsible for maintaining one or many websites. The duties of the webmaster may include ensuring that the web servers, hardware and software are operating correctly, designing the website, generating and revising web pages, replying to user comments, and examining traffic through the site. As a general rule, professional webmasters "must also be well-versed in Web transaction software, payment-processing software, and security software."[2] Due to the RFC 822 requirement for establishing a "postmaster" email address for the single point of contact for the email administrator of a domain, the "webmaster" address and title were was unofficially adopted by analogy for the website administrator.

Webmasters may be generalists with HTML expertise who manage most or all aspects of Web operations. Depending on the nature of the websites they manage, webmasters typically know scripting languages such as JavaScript, PHP and Perl. They may also be required to know how to configure web servers such as Apache HTTP Server (Apache) or Internet Information Services (IIS) and be a server administrator. Further, webmasters may also act as website designers on smaller-scale sites.[3]

An alternative definition of webmaster is a businessperson who uses online media to sell products and/or services. This broader definition of webmaster covers not only technical aspects of overseeing website construction and maintenance, but also managing website content, advertising, marketing, and order fulfillment.[4]

Core responsibilities of the webmaster may include the regulation and management of access rights of different users of a website, the appearance and setting up website navigation. Content placement can be part of a webmaster's numerous duties, though content creation may not be.

Some webmasters of larger sites may also deal with heavy volumes of email, which are often questions related to the content on the website or general computer-related inquiries.
ÎnchideЗакрыть
Întrebare: De ce topicul dat nu se încadrează în celelalte existente WebDesign,Website Show Off and Feedback,Programare?
Răspuns: Aici discutăm nu doar despre programare,design etc. ci despre SEO,SMO,lansarea unui website,publicitate si PR,indicatori de căutare,brokeri de publicitate,optimizare,monetizare and other.
TMD Webmaster's List:

castean4ik
ÎnchideЗакрыть
Guest's List:

vidrascoandrei
ÎnchideЗакрыть
BlackList
ÎnchideЗакрыть

Pentru a exclude flood-ul şi offtopicul,mesajele ce conţin reflinkuri,website-uri de tip ucoz şi cele ce au trafic zilnic mai mic de 150 ip unicali vor fi cenzurate.
Vor nimeri in Listă doar cei ce deţin cel puţin un website,sau activează în domeniul dat.

Editat de către castean4ik la 2012-04-08 19:12:57




Mesaj util ?   Da   11 puncte

1 2 3 4
<< Precedenta      Următoarea >>

#76 by hoss ( ✠ THE KING ) (0 mesaje) at 2015-04-07 00:02:29 (471 săptămâni în urmă) - [Link]Top
Acest mesaj nu respecta eticheta de comunicare și a fost ascuns. Click dacă oricum dorești să-l vezi.
#77 by zupa94 (Power User) (0 mesaje) at 2015-05-03 15:12:30 (467 săptămâni în urmă) - [Link]Top
salut baieti, de unde pot sa fac rost de un asa fel de script appline.ro?


Mesaj util ?   Da   0 puncte
#78 by System at 2015-08-09 23:12:11 (453 săptămâni în urmă) - [Link]Top
Majoritatea articolelor de pe site sunt copiate de pe alte site-uri. Daca o sa fac
Code
<link rel="canonical" href="http://link.la/articolul/original" />

o sa fie deajuns ca google sa nu imi penalizeze site-ul? Sau care ar mai trebui sa fac? (articolele de pe site nu vreau sa le sterg)


Mesaj util ?   Da   0 puncte
#79 by Michiduta_HP Postban (User) (0 mesaje) at 2016-01-12 00:00:48 (431 săptămâni în urmă) - [Link]Top
Salut
Caut asa gen de skript cind esti pe pagina/site si apes klik dreapta ca sati vina ferestruika ceia unde poti inspecta codul ori sa kopii un text in general cum pot da de asa skript?


Mesaj util ?   Da   0 puncte
#80 by System at 2016-01-12 00:19:33 (431 săptămâni în urmă) - [Link]Top
Asa ceva foarte simplu care poti sa il imbunatatesti cum iti trebuie (executa-l in consola la browser si fa click dreapta pe pagina)

Code
function onRightClick (e) {
    if (e.which != 3) {
        return;
    }

    var $ = jQuery,
        $menu = $('#context-menu');

    if (!$menu.length) {
        $menu = $('<div>')
            .css({
                'position': 'fixed',
                'border': '1px solid green',
                'padding': '15px',
                'background-color': 'white'
            })
            .attr('id', 'context-menu')
            .html('Hello');
           
        $(document.body).prepend($menu);
    }

    $menu.css({
        'top': e.clientY +'px',
        'left': e.clientX +'px'
    });
}

jQuery(document.body).on({
    'mousedown': function(e){
        onRightClick(e);
    },
    'contextmenu': function(e){
        e.preventDefault();
    }
});


sau cauta un plugin https://www.google.com/#q=jquery%20context%20menu


Mesaj util ?   Da   0 puncte
#81 by Michiduta_HP Postban (User) (0 mesaje) at 2016-01-12 00:37:14 (431 săptămâni în urmă) - [Link]Top
Ms am gasit
Code
<!-- jQuery -->
    <script src="js/jquery.js"></script>

    <!-- Bootstrap Core JavaScript -->
    <script src="js/bootstrap.min.js"></script>
<!--Protection for code -->
<script language=JavaScript>
      <!--
var message="Stop !!!";
///////////////////////////////////
      function clickIE4(){
      if (event.button==2){
      alert(message);
      return false;
      }
      }
function clickNS4(e){
      if (document.layers||document.getElementById&&!document.all){
      if (e.which==2||e.which==3){
      alert(message);
      return false;
      }
      }
      }
if (document.layers){
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown=clickNS4;
      }
      else if (document.all&&!document.getElementById){
      document.onmousedown=clickIE4;
      }
document.oncontextmenu=new Function("alert(message);return false")
// -->
      </script>



Mesaj util ?   Da   0 puncte
#82 by Michiduta_HP Postban (User) (0 mesaje) at 2016-03-26 19:06:12 (420 săptămâni în urmă) - [Link]Top
Salut ma poate ajuta cineva sa scot app din skript ? ma incurca foarte tare
Code

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Facebook Share to Unlock Content using jQuery & Facebook API - w3lessons.info</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
function shareOnFB() {
    FB.ui({
        method: "feed",
        link: "http://w3lessons.info",
        picture: "http://w3lessons.info/logo_large.png",
        name: "W3lessons - PHP, MYSQL, HTML5, CSS3, jQuery, Ajax, Facebook Style Scripts",
        caption: 'w3lessons.info',
        description: "PHP"
      }, function(t){
var str = JSON.stringify(t);
var obj = JSON.parse(str);
        if(obj.post_id != '')
        {
          var secret_data = "<h2 class=\"stitle1\">Thank you!</h2><h2 class=\"stitle2\">Please use the below link to download</h2><p class=\"d_link\"><a href=\"https://app.box.com/s/j23e7gxuug2ml54m09d4\">https://app.box.com/s/j23e7gxuug2ml54m09d4</a></p>";
          jQuery("#results").html(secret_data);
        }
      });
}

</script>
<link href="style.css" media="all" rel="stylesheet" type="text/css" />
<style type="text/css">
#keyword { height: 30px; padding: 2px;}
.ajax_indi { display: none;}
.stitle1{ color: #444; font-size: 21px; text-align: center; margin-top: 10px;}
.stitle2{ color: #777; font-size: 18px; text-align: center; margin-top: 5px;}
p.d_link { color: red; font-weight: bold; margin-top: 10px; text-align: center;}
</style>
<div id="results">
<img onclick="shareOnFB();" style="cursor:pointer" src="https://d1wofkmqsniyp0.cloudfront.net/public/v2.0/imgs/fbshare.png">
</center>
</div>
<!-- Start of Woopra Code -->
<script type="text/javascript">
function woopraReady(tracker) {
    tracker.setDomain('w3lessons.info');
    tracker.setIdleTimeout(1800000);
    tracker.track();
    return false;
}
(function() {
    var wsc = document.createElement('script');
    wsc.src = document.location.protocol+'//static.woopra.com/js/woopra.js';
    wsc.type = 'text/javascript';
    wsc.async = true;
    var ssc = document.getElementsByTagName('script')[0];
    ssc.parentNode.insertBefore(wsc, ssc);
})();
</script>
<!-- End of Woopra Code -->


<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&appId=330953753706249&version=v2.0";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>




Mesaj util ?   Da   0 puncte
#83 by speedzone (Power User) (0 mesaje) at 2016-05-12 15:56:10 (414 săptămâni în urmă) - [Link]Top
Salut Baieti . Asa o intrebare :

Cam ce salariu are un lucrator de Support Client ?

Orar de Munca de la 17 pina la 23:00 ?

Compania e destul de renumita - amplica.md


Mesaj util ?   Da   0 puncte
#84 by System at 2016-06-06 19:13:02 (410 săptămâni în urmă) - [Link]Top
Este cineva care are nevoie de efectuarea lucrărilor cu audio? Aproape 4 ani experiență în prelucrare/mixare/masterizare/aranjamente/compoziții etc. Pe vară sau freelance.
Din programare am doar un pic experiență cu Ruby On Rails, HTML, CSS (am și un proiect terminat).


Mesaj util ?   Da   0 puncte
#85 by speedzone (Power User) (0 mesaje) at 2016-06-29 17:52:49 (407 săptămâni în urmă) - [Link]Top
Salutare.

Care e cea mai simpla modalitate de transfer a fisierelor de pe VPS pe Server Dedicat ?


Mesaj util ?   Da   0 puncte

1 2 3 4
<< Precedenta      Următoarea >>

Forum Index > Internet > Webmasters


Navigare rapidă:


Comunitatea digitală din Moldova. Să adunăm și să organizăm conținutul autohton de pe întreg internet pe un singur site web.