Skocz do zawartości

BleckRider

Użytkownicy
  • Zawartość

    11
  • Rejestracja

  • Ostatnio

Posty napisane przez BleckRider


  1. Nieco odnowie watek

    mam system ubuntu chciałbym skonfigurować poprawnie postfixa

    konfiguracje postfiksa znalazłem tutaj http://www.sebool.net/index.php/postfix-konfiguracja/2-konfiguracja-postfixa.html

    w pliku main.cf ale niewiem gdzie przypisać wszystkie dane z mojej domeny do tego pliku oto on

     

    # See /usr/share/postfix/main.cf.dist for a commented, more complete version

     

     

    # Debian specific: Specifying a file name will cause the first

    # line of that file to be used as the name. The Debian default

    # is /etc/mailname.

    #myorigin = /etc/mailname

     

    smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)

    biff = no

     

    # appending .domain is the MUA's job.

    append_dot_mydomain = no

     

    # Uncomment the next line to generate "delayed mail" warnings

    #delay_warning_time = 4h

     

    readme_directory = no

     

    # TLS parameters

    smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem

    smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key

    smtpd_use_tls=yes

    smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache

    smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache

     

    # See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for

    # information on enabling SSL in the smtp client.

     

    myhostname = Workstation

    alias_maps = hash:/etc/aliases

    alias_database = hash:/etc/aliases

    mydestination = Workstacjon, Workstation, localhost.localdomain, localhost

    relayhost =

    mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128

    mailbox_size_limit = 0

    recipient_delimiter = +

    inet_interfaces = all

    inet_protocols = ipv4

     

     

    Proszę o pomoc


  2. Instrukcje dla webmasterów, jak zaciemnić swoją stronę internetową.

     

    Podgląd strony blackout'u: http://telecomix.pl/blackout_demo/

     

    Automatycznie, po stronie klienta w JavaScript:

     

    Wstaw to po tagu body na początku dokumentu:

    <script type="text/javascript">/* <![CDATA[ */
    d=new Date();if((d.getFullYear()==2012)&&(d.getMonth()==0)&&(d.getDate()==23)){document.write('<div style="z-index: 9999; position: fixed; top:0; left:0; right:0; bottom:0; background: #000; color: #fff; padding: 2em; font-family: \'Helvetica\', \'Verdana\', sans-serif; font-size: 12pt;"><h1>Nie dla ACTA!</h1><p>Jeżeli dokument ACTA zostanie ratyfikowny, ten serwis internetowy może przestać istnieć!</p><p>Dowiedz się więcej na <a href="http://acta.wikidot.com">acta.wikidot.com</a></p><iframe style="width:620px; height:380px; margin-top: 10px;" src="http://www.youtube.com/embed/kZOK-O15li8?rel=0&autohide=0&modestbranding=1&showinfo=0&fs=1&egm=1"></iframe></div>');}
    /* ]]> */</script>
    

    Taki sposób jest prosty do ominięcia - wystarczy wyłączyć JavaScript. Podobnie zrobiła angielska Wikipedia w proteście przeciwko SOPA.

    Ręcznie, po stronie serwera, bez PHP:

    Podmień główny plik strony www (index.html) na następujący:

     

    <!doctype html>
    <html><head><title>Serwis internetowy wyłączony.</title><meta charset="utf-8" /></head><body>
    <div style="z-index: 9999; position: fixed; top:0; left:0; right:0; bottom:0; background: #000; color: #fff; padding: 2em; font-family: 'Helvetica', 'Verdana', sans-serif; font-size: 12pt;"><h1>Nie dla ACTA!</h1><p>Jeżeli dokument ACTA zostanie ratyfikowny, ten serwis internetowy może przestać istnieć!</p><p>Dowiedz się więcej na <a href="http://acta.wikidot.com">acta.wikidot.com</a></p><iframe style="width:620px; height:380px; margin-top: 10px;" src="http://www.youtube.com/embed/kZOK-O15li8?rel=0&autohide=0&modestbranding=1&showinfo=0&fs=1&egm=1"></iframe></div>
    </body></html>
    

    Musisz ręcznie podmienić plik na początku dnia i pod jego koniec.

    Automatycznie, po stronie serwera, z PHP:

    Zmień nazwę pliku index.php na index.0.php. Następnie utwórz plik index.php o następujące treści:

     

    <?php
    if (strftime('%Y-%m-%d')=='2012-01-23') { ?>
    <!doctype html>
    <html><head><title>Serwis internetowy wyłączony.</title><meta charset="utf-8" /></head><body>
    <div style="z-index: 9999; position: fixed; top:0; left:0; right:0; bottom:0; background: #000; color: #fff; padding: 2em; font-family: 'Helvetica', 'Verdana', sans-serif; font-size: 12pt;"><h1>Nie dla ACTA!</h1><p>Jeżeli dokument ACTA zostanie ratyfikowny, ten serwis internetowy może przestać istnieć!</p><p>Dowiedz się więcej na <a href="http://acta.wikidot.com">acta.wikidot.com</a></p><iframe style="width:620px; height:380px; margin-top: 10px;" src="http://www.youtube.com/embed/kZOK-O15li8?rel=0&autohide=0&modestbranding=1&showinfo=0&fs=1&egm=1"></iframe></div>
    </body></html>
    <?php } else {
    include('index.0.php');
    }
    ?>
    

    Ten kod automatycznie wykryje kiedy zaciemniać stronę.

     

    Pozwól użytkownikom ominąć zaciemnienie, przy blokadzie po stronie serwera

    Niezależnie czy masz PHP na serwerze, czy nie masz, możesz dodać do kodu link dzięki któremu internauci będą mogli mimo wszystko zobaczyć Twoją witrynę. Aby to osiągnąć przed zamknięciem tagu div dodaj:

     

     

    <a href="./index.0.php">Kontynuuj</a>
    

    lub index.0.html w atrybucie href jeżeli taki był plik indeksu.


  3. Witam !

    Jak w temacie interesuje mnie jakiś tutorial najlepiej polski z instalacją i konfiguracją serwera pocztowego np. (Postfix)

    Znalazłem coś takiego , czy ktoś korzystał z tego poradnika lub prosił bym o jakiś czytelniejszy

    System który posiadam to ubuntu

    Do końca nie jestem pewien czy postfix to dobre rozwiązanie , może ktoś ma coś lepszego ?

    Morze są jakies inne usługi na lepszym poziomie i bezpieczniejsze które mają oprogramowanie antyspamowe i antywirusowe,

    Proszę o pomoc


  4. Witam

    Pytanie jak w temacie jak ukryć dostęp do phpmyadmin tak aby nie był widoczny dla gośći ?

    do pliki etc/phpmyadmin dodałem plik .htaccess

     

    allow from  77.254.167.95
    deny from all

     

    powinien zablokować dostęp wszystkim poza mną lecz gdy sprawdzam przez proxy nadal go widać ?

     

    W google znalazłem coś takiego aby zmodyfikować plik

    /etc/phpmyadmin/apache.conf

     

    # phpMyAdmin default Apache configuration
    Alias /phpmyadmin /usr/share/phpmyadmin
    <Directory /usr/share/phpmyadmin>
      Options FollowSymLinks
      DirectoryIndex index.php
      <IfModule mod_php5.c>
      AddType application/x-httpd-php .php
      php_flag magic_quotes_gpc Off
      php_flag track_vars On
      php_flag register_globals Off
      php_admin_flag allow_url_fopen Off
      php_value include_path .
      php_admin_value upload_tmp_dir /var/lib/phpmyadmin/tmp
      php_admin_value open_basedir /usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/
      </IfModule>
    </Directory>
    # Authorize for setup
    <Directory /usr/share/phpmyadmin/setup>
    <IfModule mod_authn_file.c>
    AuthType Basic
    AuthName "phpMyAdmin Setup"
    AuthUserFile /etc/phpmyadmin/htpasswd.setup
    </IfModule>
    Require valid-user
    </Directory>
    # Disallow web access to directories that don't need it
    <Directory /usr/share/phpmyadmin/libraries>
    Order Deny,Allow
    Deny from All
    </Directory>
    <Directory /usr/share/phpmyadmin/setup/lib>
    Order Deny,Allow
    Deny from All
    </Directory>
    

     

    Czy ktoś zmieniał coś takiego ?


  5. Kod: Zaznacz cały
    [Fri Jan 06 15:13:10 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/rating, referer: http://www.kronos-sat.pl/showthread.php?t=18015
    [Fri Jan 06 15:13:10 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/rating, referer: http://www.kronos-sat.pl/showthread.php?t=18015
    [Fri Jan 06 15:13:10 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/rating, referer: http://www.kronos-sat.pl/showthread.php?t=18015
    [Fri Jan 06 15:13:10 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/rating, referer: http://www.kronos-sat.pl/showthread.php?t=18015
    [Fri Jan 06 15:13:10 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/rating, referer: http://www.kronos-sat.pl/showthread.php?t=18015
    [Fri Jan 06 15:13:15 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:13:15 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:13:16 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:13:29 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:13:29 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:13:29 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:14:12 2012] [notice] caught SIGTERM, shutting down
    [Fri Jan 06 15:14:13 2012] [notice] Apache/2.2.17 (Ubuntu) PHP/5.3.5-1ubuntu7.4 with Suhosin-Patch configured -- resuming normal operations
    [Fri Jan 06 15:14:15 2012] [error] [client 178.37.171.83] File does not exist: /var/www/admincp/admincp
    [Fri Jan 06 15:14:17 2012] [error] [client 178.37.171.83] File does not exist: /var/www/admincp/images, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:14:17 2012] [error] [client 178.37.171.83] File does not exist: /var/www/admincp/images, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:14:18 2012] [error] [client 178.37.171.83] File does not exist: /var/www/admincp/images, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:14:57 2012] [notice] caught SIGTERM, shutting down
    [Fri Jan 06 15:14:58 2012] [notice] Apache/2.2.17 (Ubuntu) PHP/5.3.5-1ubuntu7.4 with Suhosin-Patch configured -- resuming normal operations
    [Fri Jan 06 15:15:02 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:15:02 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:15:02 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:15:59 2012] [error] [client 109.199.3.155] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:16:02 2012] [error] [client 109.199.3.155] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:16:02 2012] [error] [client 109.199.3.155] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:16:38 2012] [error] [client 217.237.88.51] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:16:39 2012] [error] [client 217.237.88.51] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:16:40 2012] [error] [client 217.237.88.51] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:17:00 2012] [notice] caught SIGTERM, shutting down
    [Fri Jan 06 15:17:01 2012] [notice] Apache/2.2.17 (Ubuntu) PHP/5.3.5-1ubuntu7.4 with Suhosin-Patch configured -- resuming normal operations
    [Fri Jan 06 15:17:01 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:17:07 2012] [error] [client 178.37.171.83] client denied by server configuration: /var/www/.htaccess
    [Fri Jan 06 15:17:09 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:17:09 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:17:10 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:17:15 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:17:18 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:17:18 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:17:19 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:18:05 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:18:13 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:18:13 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:18:15 2012] [error] [client 217.237.88.51] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:18:31 2012] [error] [client 109.199.3.155] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:18:36 2012] [error] [client 178.37.171.83] client denied by server configuration: /var/www/.htaccess
    [Fri Jan 06 15:18:37 2012] [error] [client 109.199.3.155] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:18:37 2012] [error] [client 109.199.3.155] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:18:37 2012] [error] [client 109.199.3.155] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:18:37 2012] [error] [client 178.37.171.83] client denied by server configuration: /var/www/.htaccess
    [Fri Jan 06 15:18:38 2012] [error] [client 109.199.3.155] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:18:38 2012] [error] [client 178.37.171.83] client denied by server configuration: /var/www/.htaccess
    [Fri Jan 06 15:18:39 2012] [error] [client 178.37.171.83] client denied by server configuration: /var/www/.htaccess
    [Fri Jan 06 15:18:40 2012] [error] [client 178.37.171.83] client denied by server configuration: /var/www/.htaccess
    [Fri Jan 06 15:18:41 2012] [error] [client 178.37.171.83] client denied by server configuration: /var/www/.htaccess
    [Fri Jan 06 15:18:42 2012] [error] [client 178.37.171.83] client denied by server configuration: /var/www/.htaccess
    [Fri Jan 06 15:18:43 2012] [error] [client 178.37.171.83] client denied by server configuration: /var/www/.htaccess
    [Fri Jan 06 15:19:05 2012] [error] [client 109.199.3.155] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:19:10 2012] [error] [client 109.199.3.155] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:19:10 2012] [error] [client 109.199.3.155] client denied by server configuration: /var/www/.htaccess, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:19:17 2012] [notice] caught SIGTERM, shutting down
    [Fri Jan 06 15:19:18 2012] [notice] Apache/2.2.17 (Ubuntu) PHP/5.3.5-1ubuntu7.4 with Suhosin-Patch configured -- resuming normal operations
    [Fri Jan 06 15:19:22 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:19:22 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:19:22 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/
    [Fri Jan 06 15:19:36 2012] [error] [client 50.19.152.219] File does not exist: /var/www/software-207
    [Fri Jan 06 15:19:40 2012] [error] [client 109.199.3.155] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:19:40 2012] [error] [client 109.199.3.155] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:19:40 2012] [error] [client 109.199.3.155] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:19:49 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/member.php?u=1171
    [Fri Jan 06 15:19:49 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/member.php?u=1171
    [Fri Jan 06 15:19:49 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/member.php?u=1171
    [Fri Jan 06 15:20:06 2012] [error] [client 109.199.3.155] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/forumdisplay.php?f=47
    [Fri Jan 06 15:20:07 2012] [error] [client 109.199.3.155] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/forumdisplay.php?f=47
    [Fri Jan 06 15:20:07 2012] [error] [client 109.199.3.155] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/forumdisplay.php?f=47
    [Fri Jan 06 15:20:11 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:20:11 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:20:11 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:20:17 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/online.php
    [Fri Jan 06 15:20:17 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/online.php
    [Fri Jan 06 15:20:17 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/online.php
    [Fri Jan 06 15:20:30 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:20:30 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/bg_tile.gif, referer: http://www.kronos-sat.pl/index.php
    [Fri Jan 06 15:20:30 2012] [error] [client 178.37.171.83] File does not exist: /var/www/images/bluefox/misc/nav_start.gif, referer: http://www.kronos-sat.pl/index.php
    

     

    Za bardzo nic z tego nie rozumiem

     

    ustawiłem Directory w pliku sites-available/default po zmianie strona na której mam serwer off

     

    </Directory>
      <Directory /var/www/>
      Options Indexes FollowSymLinks MultiViews
      AllowOverride All
      Order allow,deny
      allow from all
      </Directory>
    

     

    Internal Server Error

     

    The server encountered an internal error or misconfiguration and was unable to complete your request.

     

    Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.

     

    More information about this error may be available in the server error log.

     

    Dodam jescze plik z .htaccess

     

    # Comment the following line (add '#' at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On
    # Some servers require the Rewritebase directive to be
    # enabled (remove '#' at the beginning to activate)
    # Please note: when enabled, you must include the path
    # to your root vB folder (i.e. RewriteBase /forums/)
    #RewriteBase /
    #RewriteCond %{HTTP_HOST} !^www\.xxxxxxxx\.pl
    #RewriteRule (.*) http://www.xxxxxxxxxxxxxxxxxxx.pl/$1 [L,R=301]
    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php [L,QSA]
    


  6. Witam !

     

    W katalogu www. mam plik .htaccess drugi taki sam plik mam w katalogu www/admincp

    oba pliki zauważyłem ze nie działają nie spełniają swoich zadań

    Podejrzewam że przyczyna jest z strony serwera , czy ktoś spotkał coś podobnego

     

    ustawiłem Directory w pliku sites-available/default po zmianie strona na której mam serwer off

    </Directory>
       <Directory /var/www/>
           Options Indexes FollowSymLinks MultiViews
           AllowOverride All
           Order allow,deny
           allow from all
       </Directory>

     

    Internal Server Error

     

    The server encountered an internal error or misconfiguration and was unable to complete your request.

     

    Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.

     

    More information about this error may be available in the server error log.

     

    Bardzo proszę o pomoc


  7. Witam !

    Mam taki problem przekierowałem swoja domenę która posiadam w ovh za pomocą poradnika http://pomoc.ovh.pl/DynDns

    usługodawcą netu jest firma Netia ( na dzień dzisiejszy mam zmienny adres ip) linie mam podłączona pod ruter za ruterem jest serwer www. Mimo że strefa dynDns została poprawnie skonfigurowana usługa nie działa , w sieci mojej domowej mam 7 komputerów i jeden serwer, serwer mam służyć typowo do reklamy oferty firmowej, mimo instalacji skryptów usługa nie działa u mnie. Dzwoniąc do wsparcia technicznego uzyskałem info muszę posiadać skrypt który pozwoli na podłączenie zewnętrzny adresu ip. w zapytaniach crona.

    Czy ktoś spotkał takowy skrypt ? , Zastanawiam się czy jest jakaś opcja podpięcia serwera przed ruterem sam już dalej nie wiem jak z tym sobie poradzić

    Bardzo proszę o pomoc

×