Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

Instalacja serwera 7.3 na VPS MEGA-PORADNIK


LanPL

Rekomendowane odpowiedzi

Opublikowano

A to wtedy InnoGames od razu by zareagowało:)

Możesz postawić darmowy, ale z KP to będziesz miał problem, istniał kiedyś taki mały serwerek mojego znajomego, i miał z nim problem mimo iż nie grało na tym serwerze nawet 100 osób:D

Opublikowano

Double-post...

Jeśli umieścisz dość dużo reklam będzie zysk, jeśli chcesz żeby gra sama na siebie zarabiała musisz sobie ściągnąć silnik którego twórca na to pozwala i nie jest podróbką!

Po za tym, wprowadzenie KP w silniku plemion PL-Lan nie jest łatwe, oraz trzeba znać się bardzo dobrze na PHP.

Opublikowano

a ja mam błąd http://178.32.95.158/index.php

cos takiego

Regulamin!'; } else { if (strlen($haslo) < 4) { $return = 'Haso musi skada si z co najmniej 4 znakw'; } else { if ($haslo !== $haslo_powt) { $return = 'Pola haso i powtrz haso musz by identyczne'; } else { $nazwa = cmp_str($nazwa,4,75); $email = cmp_str($email,4,75); if ($nazwa === 'SHORT') { $return = 'Nazwa musi skada si z co najmniej 4 znakw'; } if ($nazwa === 'LONG') { $return = 'Nazwa moe maksymalnie skada si z 75 znakw'; } if ($nazwa === 'SPACES') { $return = 'Nazwa nie moe skada si z samych spacji'; } if ($email === 'SHORT') { $return = 'Adres e-mail musi skada si z co najmniej 4 znakw'; } if ($email === 'LONG') { $return = 'Adres e-mail moe maksymalnie skada si z 75 znakw'; } if ($email === 'SPACES') { $return = 'Adres e-mail nie moe skada si z samych spacji'; } if ($email === 'NO@') { $return = 'Adres e-mail nie jest poprawny'; } if (empty($return)) { $email = parse($email); $counts_email = sql("SELECT COUNT(id) FROM `gracze` WHERE `email` = '".$email."'",'array'); if ($counts_email > 0) { $return = 'Ten E-mail jest zajty!';}} if (empty($return)) { $nazwa = parse($nazwa); $counts_players = sql("SELECT COUNT(id) FROM `gracze` WHERE `nazwa` = '".$nazwa."'",'array'); if ($counts_players > 0) { $return = 'Gracz o takiej nazwie ju istnieje. Wybierz inn nazw.'; } else { $haslo = md5($haslo); $email = parse($email); $date_reg = date("U"); ($date_reg); $ip_reg = $_SERVER['REMOTE_ADDR']; ($ip_reg); mysql_query("INSERT INTO gracze(nazwa,haslo,email,date_reg,ip_reg) value('".$nazwa."','".$haslo."','".$email."','".$date_reg."','".$ip_reg."')"); $return = sql("SELECT `id` FROM `gracze` WHERE `nazwa` = '$nazwa'",'array'); } } } } } return $return; } function GetClientIP() { if ($_SERVER['HTTP_X_FORWARDED_FOR']) { $clientip = $_SERVER['HTTP_X_FORWARDED_FOR']; } else { $clientip = $_SERVER['REMOTE_ADDR']; } return $clientip; } function zaloguj($gracz,$haslo,$bez_przerwy) { $gracz = urlencode($gracz); $haslo = md5($haslo); $counts_players = sql("SELECT COUNT(id) FROM `gracze` WHERE `nazwa` = '".$gracz."'",'array'); if ($counts_players > 0) { $user = sql("SELECT id,haslo FROM `gracze` WHERE `nazwa` = '".$gracz."'",'assoc'); if ($haslo == $user['haslo']) { if ($bez_przerwy == 1) { mysql_query("INSERT INTO zalogowani(client_ip,client_id) VALUES('".GetClientIP()."','".$user['id']."')"); $_all_logs = 0; } else { $_all_logs = 1; } $return = array($user['id'],urldecode($gracz),$_all_logs); } else { $return = 'Bdne haso'; } } else { $return = 'Nie ma gracza o tej nazwie'; } return $return; } function wyloguj() { mysql_query("DELETE FROM `zalogowani` WHERE `client_ip` = '".GetClientIP()."'"); header("LOCATION: index.php"); exit; } function zaloguj_na_serwer($userinfo,$form_pass,$form_user,$form_serwer) { global $serwery; if (!in_array($form_serwer,$serwery)) { header ('LOCATION: index.php'); exit; } if ($form_pass != $userinfo['haslo']) { header ('LOCATION: index.php'); exit; } if ($form_user != $userinfo['id']) { header ('LOCATION: index.php'); exit; } if (in_array($form_serwer,$userinfo['serwery_gry'])) { //Start sesji i dodanie jej do COOKIE'S session_start(); setcookie('session',session_id()); $hkey = mt_rand(1000,9999); setcookie('hkey',$hkey); setcookie('aktu_serwer',$form_serwer); require ('pl'.$form_serwer.'/lib/config.php'); //Poczy z baz danych serwera docelowego: $db_server_lan_cnnct_var = mysql_connect($config['db_host'],$config['db_user'],$config['db_pw'],''); mysql_select_db($config['db_name'],$db_server_lan_cnnct_var); //Pobra info o graczu z bazy danych serwera docelowego $user_lan_info = sql("SELECT id,villages,username FROM `users` WHERE `tw_id` = '".$userinfo['id']."'",'assoc'); //Usun wszystkie sesje: mysql_query("DELETE FROM `sessions` WHERE (`sid` = '".session_id()."') OR (`userid` = '".$user_lan_info['id']."')"); //Doda sesj do bazy danych serwera docelowego mysql_query("INSERT INTO sessions(userid,sid,hkey) VALUES('".$user_lan_info['id']."','".session_id()."','".$hkey."')"); //Doda zalogowanie mysql_query("INSERT INTO logins(userid,username,time,ip) VALUES('".$user_lan_info['id']."','".$user_lan_info['username']."','".date("U")."','".GetClientIP()."')"); if ($user_lan_info['villages'] > 0) { //Pierwsza wioska: $first_village = sql("SELECT `id` FROM `villages` WHERE `userid` = '".$user_lan_info['id']."' ORDER BY name LIMIT 1",'array'); header ('LOCATION: pl'.$form_serwer.'/game.php?village='.$first_village.'&screen=welcome'); exit; } else { header ('LOCATION: pl'.$form_serwer.'/create_village.php'); exit; } mysql_close(); } else { //Start sesji i dodanie jej do COOKIE'S session_start(); setcookie('session',session_id()); setcookie('ord_un',parse($userinfo['nazwa'])); setcookie('ord_id',$form_user); setcookie('ord_pa',$form_pass); setcookie('aktu_serwer',$form_serwer); header ('LOCATION: pl'.$form_serwer.'/uczestnictwo.php'); exit; } } function change_pass($nazwa_usera,$email,$new_pass) { $nazwa_usera = parse($nazwa_usera); $email = parse($email); if (strlen($new_pass) < 4) { $return = 'Haso musi skada si z co najmniej 4 znakw'; } else { $user_counts = sql("SELECT COUNT(id) FROM `gracze` WHERE `nazwa` = '".$nazwa_usera."'",'array'); if ($user_counts > 0) { $user_info = sql("SELECT id,email FROM `gracze` WHERE `nazwa` = '".$nazwa_usera."'","assoc"); if ($email != $user_info['email']) { $return = 'Wprowad poprawny adres email'; } else { $new_pass = md5($new_pass); mysql_query("UPDATE `gracze` SET `haslo` = '$new_pass' WHERE `id` = '".$user_info['id']."'"); $return = 'Haso zostao zmienione.'; } } else { $return = 'Nie ma gracza o tej nazwie'; } } return $return; } function formatuj_date($czas) { return date("Y-m-d H:i", $czas); } function kopiuj($sciezka, $docelowy) { if ( !is_dir($docelowy)) { mkdir($docelowy, 0777); } $katalog = opendir($sciezka); while (false !== ($plik = readdir($katalog))) { if ($plik=="." || $plik=="..") { continue; } if (is_dir("$sciezka/$plik")) { mkdir("$docelowy/$plik", 0777); kopiuj("$sciezka/$plik","$docelowy/$plik"); } else { copy("$sciezka/$plik", "$docelowy/$plik"); } } closedir($katalog); } function parse($str) { $str = urlencode($str); $str = htmlspecialchars($str); $str = trim($str); return $str; } function entparse($str) { $str = urldecode($str); return $str; } /*FUNKCJE WALIDACYJNE*/ function get_validete_reg() { return '/[^A-Za-z0-9_꿟ʯӌ\.\/\:\;\[\]\=\+\-\)\(\*\&\^\%\$\#\@\!\~\`\n\| \?\,\{\}]/'; } function str_validator($str) { //Wywal wszystkie niedozwoloze znaki $str = preg_replace(get_validete_reg(),'',$str); return $str; } function cmp_str($str,$min,$max) { $str = str_validator($str); $len = strlen($str); if ($len < $min) { return 'SHORT'; } else { if ($len > $max) { return 'LONG'; } else { if (substr_count($str," ") == $len) { return 'SPACES'; } else { return $str; } } } } function rrmdir($dir) { $fp = opendir($dir); if ($fp) { while ($f = readdir($fp)) { $file = $dir . "/" . $f; if ($f == "." || $f == "..") { continue; } else if ( is_dir($file) ) { rrmdir($file); } else { unlink($file); } } closedir($fp); rmdir($dir); } } ?>

  • 3 tygodnie później...
  • 9 miesięcy temu...
Opublikowano

Przepraszam za odkop ale potrzebuje szybkiej pomocy mam taki problem po restarcie serwera wyskakuje mi takie coś i ip w przeglądarce nie wyświetla xampp

Starting XAMPP for Linux 1.6.1...
XAMPP: Another web server daemon is already running.
XAMPP: Starting MySQL...
XAMPP: Starting ProFTPD...
XAMPP for Linux started.
Opublikowano

Wow bardzo dawno pisałem ten temat, pamiętam, że sam miałem kiedyś taki błą, ale postaram się pomóc jak tylko potrafię

Najpiewr postaraj się zamknąć xamppka ręcznie tj. pozamykać każdy port po kolei.

Wydaje mi się że wina tego jest taka, że cały czas uskuteczniasz tylko xampp start, albo xampp restart, ale ani razu xampp stop.

 

Z tego co pamiętam (ale mogę się mylić) jest to wina zapchanego jakiegoś portu. Zamknij xamppa i włącz, a jeśli nie pomoże zrestartuj cały serwer / maszynę wirtualną.

 

:)

Grafika Wektorowa / Modelowanie / Renderowanie / Wysokopoziomowe języki B) (Python, Prolog, Haskell).

Najbardziej nienawidzę tego asemblera.. jak mu tam? C++ :(( 

  • 1 miesiąc temu...
Opublikowano

Ktoś może miał taki błąd?

root@servertts:~# /opt/lampp/lampp start
Starting XAMPP for Linux 1.6.1...
/opt/lampp/share/lampp/phpstatus: line 4: /opt/lampp/bin/php: No such file or directory
XAMPP: Starting Apache with SSL ...
XAMPP: Error 127! Couldn't start Apache!
XAMPP: Starting diagnose...
XAMPP: Sorry, I've no idea what's going wrong.
XAMPP: Please contact our forum http://www.apachefriends.org/f/
XAMPP: Another MySQL daemon is already running.
XAMPP: Another FTP daemon is already running.
XAMPP for Linux started.

"Myśl, myśl, myśl..." - Kubuś Puchatek || "Manual, manual, manual..." - Kubuś Programista


"Szukaj, szukaj, szukaj..." - Kubuś Odkrywca || "Debuguj, debuguj, debuguj..." - Kubuś Developer


 


Potrzebujesz czegoś? Oznacz mnie @Salur

  • 5 miesięcy temu...
Opublikowano

tar xvfz /opt/xampp-linux-1.6.1.tar.gz -C /opt 

 

Gdy to wpisuje to pokazuje mi się to : 

 

 

tar: You may not specify more than one `-Acdtrux' or `--test-label' option
Try `tar --help' or `tar --usage' for more information.
root@vps159147-rescue:~#

 

Co mam źle ?

Opublikowano

tar xvfz /opt/xampp-linux-1.6.1.tar.gz -C /opt 

 

Gdy to wpisuje to pokazuje mi się to : 

 

 

tar: You may not specify more than one `-Acdtrux' or `--test-label' option

Try `tar --help' or `tar --usage' for more information.

root@vps159147-rescue:~#

 

Co mam źle ?

 

wpisz `tar --help i powiedz co ci wyskoczy w okienku, gdzies gubi sie skrypt

Opublikowano

 

 

-u, --update only append files newer than copy in archive

-x, --extract, --get extract files from an archive

 

Operation modifiers:

 

--check-device check device numbers when creating incremental

archives (default)

-g, --listed-incremental=FILE handle new GNU-format incremental backup

-G, --incremental handle old GNU-format incremental backup

--ignore-failed-read do not exit with nonzero on unreadable files

--level=NUMBER dump level for created listed-incremental archive

-n, --seek archive is seekable

--no-check-device do not check device numbers when creating

incremental archives

--no-seek archive is not seekable

--occurrence[=NUMBER] process only the NUMBERth occurrence of each file

in the archive; this option is valid only in

conjunction with one of the subcommands --delete,

--diff, --extract or --list and when a list of

files is given either on the command line or via

the -T option; NUMBER defaults to 1

--sparse-version=MAJOR[.MINOR]

set version of the sparse format to use (implies

--sparse)

-S, --sparse handle sparse files efficiently

 

Overwrite control:

 

-k, --keep-old-files don't replace existing files when extracting

--keep-newer-files don't replace existing files that are newer than

their archive copies

--no-overwrite-dir preserve metadata of existing directories

--overwrite overwrite existing files when extracting

--overwrite-dir overwrite metadata of existing directories when

extracting (default)

--recursive-unlink empty hierarchies prior to extracting directory

--remove-files remove files after adding them to the archive

-U, --unlink-first remove each file prior to extracting over it

-W, --verify attempt to verify the archive after writing it

 

Select output stream:

 

--ignore-command-error ignore exit codes of children

--no-ignore-command-error treat non-zero exit codes of children as

error

-O, --to-stdout extract files to standard output

--to-command=COMMAND pipe extracted files to another program

 

Handling of file attributes:

 

--atime-preserve[=METHOD] preserve access times on dumped files, either

by restoring the times after reading

(METHOD='replace'; default) or by not setting the

times in the first place (METHOD='system')

--delay-directory-restore delay setting modification times and

permissions of extracted directories until the end

of extraction

--group=NAME force NAME as group for added files

--mode=CHANGES force (symbolic) mode CHANGES for added files

--mtime=DATE-OR-FILE set mtime for added files from DATE-OR-FILE

-m, --touch don't extract file modified time

--no-delay-directory-restore

cancel the effect of --delay-directory-restore

option

--no-same-owner extract files as yourself (default for ordinary

users)

--no-same-permissions apply the user's umask when extracting permissions

from the archive (default for ordinary users)

--numeric-owner always use numbers for user/group names

--owner=NAME force NAME as owner for added files

-p, --preserve-permissions, --same-permissions

extract information about file permissions

(default for superuser)

--preserve same as both -p and -s

--same-owner try extracting files with the same ownership as

exists in the archive (default for superuser)

-s, --preserve-order, --same-order

sort names to extract to match archive

 

Device selection and switching:

 

-f, --file=ARCHIVE use archive file or device ARCHIVE

--force-local archive file is local even if it has a colon

-F, --info-script=NAME, --new-volume-script=NAME

run script at end of each tape (implies -M)

-L, --tape-length=NUMBER change tape after writing NUMBER x 1024 bytes

-M, --multi-volume create/list/extract multi-volume archive

--rmt-command=COMMAND use given rmt COMMAND instead of rmt

--rsh-command=COMMAND use remote COMMAND instead of rsh

--volno-file=FILE use/update the volume number in FILE

 

Device blocking:

 

-b, --blocking-factor=BLOCKS BLOCKS x 512 bytes per record

-B, --read-full-records reblock as we read (for 4.2BSD pipes)

-i, --ignore-zeros ignore zeroed blocks in archive (means EOF)

--record-size=NUMBER NUMBER of bytes per record, multiple of 512

 

Archive format selection:

 

-H, --format=FORMAT create archive of the given format

 

FORMAT is one of the following:

 

gnu GNU tar 1.13.x format

oldgnu GNU format as per tar <= 1.12

pax POSIX 1003.1-2001 (pax) format

posix same as pax

ustar POSIX 1003.1-1988 (ustar) format

v7 old V7 tar format

 

--old-archive, --portability

same as --format=v7

--pax-option=keyword[[:]=value][,keyword[[:]=value]]...

control pax keywords

--posix same as --format=posix

-V, --label=TEXT create archive with volume name TEXT; at

list/extract time, use TEXT as a globbing pattern

for volume name

 

Compression options:

 

-a, --auto-compress use archive suffix to determine the compression

program

-I, --use-compress-program=PROG

filter through PROG (must accept -d)

-j, --bzip2 filter the archive through bzip2

-J, --xz filter the archive through xz

--lzip filter the archive through lzip

--lzma filter the archive through xz

--lzop

--no-auto-compress do not use archive suffix to determine the

compression program

-z, --gzip, --gunzip, --ungzip filter the archive through gzip

-Z, --compress, --uncompress filter the archive through compress

 

Local file selection:

 

--add-file=FILE add given FILE to the archive (useful if its name

starts with a dash)

--backup[=CONTROL] backup before removal, choose version CONTROL

-C, --directory=DIR change to directory DIR

--exclude=PATTERN exclude files, given as a PATTERN

--exclude-backups exclude backup and lock files

--exclude-caches exclude contents of directories containing

CACHEDIR.TAG, except for the tag file itself

--exclude-caches-all exclude directories containing CACHEDIR.TAG

--exclude-caches-under exclude everything under directories containing

CACHEDIR.TAG

--exclude-tag=FILE exclude contents of directories containing FILE,

except for FILE itself

--exclude-tag-all=FILE exclude directories containing FILE

--exclude-tag-under=FILE exclude everything under directories

containing FILE

--exclude-vcs exclude version control system directories

-h, --dereference follow symlinks; archive and dump the files they

point to

--hard-dereference follow hard links; archive and dump the files they

refer to

-K, --starting-file=MEMBER-NAME

begin at member MEMBER-NAME in the archive

--newer-mtime=DATE compare date and time when data changed only

--no-null disable the effect of the previous --null option

--no-recursion avoid descending automatically in directories

--no-unquote do not unquote filenames read with -T

--null -T reads null-terminated names, disable -C

-N, --newer=DATE-OR-FILE, --after-date=DATE-OR-FILE

only store files newer than DATE-OR-FILE

--one-file-system stay in local file system when creating archive

-P, --absolute-names don't strip leading `/'s from file names

--recursion recurse into directories (default)

--suffix=STRING backup before removal, override usual suffix ('~'

unless overridden by environment variable

SIMPLE_BACKUP_SUFFIX)

-T, --files-from=FILE get names to extract or create from FILE

--unquote unquote filenames read with -T (default)

-X, --exclude-from=FILE exclude patterns listed in FILE

 

File name transformations:

 

--strip-components=NUMBER strip NUMBER leading components from file

names on extraction

--transform=EXPRESSION, --xform=EXPRESSION

use sed replace EXPRESSION to transform file

names

 

File name matching options (affect both exclude and include patterns):

 

--anchored patterns match file name start

--ignore-case ignore case

--no-anchored patterns match after any `/' (default for

exclusion)

--no-ignore-case case sensitive matching (default)

--no-wildcards verbatim string matching

--no-wildcards-match-slash wildcards do not match `/'

--wildcards use wildcards (default for exclusion)

--wildcards-match-slash wildcards match `/' (default for exclusion)

 

Informative output:

 

--checkpoint[=NUMBER] display progress messages every NUMBERth record

(default 10)

--checkpoint-action=ACTION execute ACTION on each checkpoint

--full-time print file time to its full resolution

--index-file=FILE send verbose output to FILE

-l, --check-links print a message if not all links are dumped

--no-quote-chars=STRING disable quoting for characters from STRING

--quote-chars=STRING additionally quote characters from STRING

--quoting-style=STYLE set name quoting style; see below for valid STYLE

values

-R, --block-number show block number within archive with each

message

--show-defaults show tar defaults

--show-omitted-dirs when listing or extracting, list each directory

that does not match search criteria

--show-transformed-names, --show-stored-names

show file or archive names after transformation

--totals[=SIGNAL] print total bytes after processing the archive;

with an argument - print total bytes when this

SIGNAL is delivered; Allowed signals are: SIGHUP,

SIGQUIT, SIGINT, SIGUSR1 and SIGUSR2; the names

without SIG prefix are also accepted

--utc print file modification times in UTC

-v, --verbose verbosely list files processed

--warning=KEYWORD warning control

-w, --interactive, --confirmation

ask for confirmation for every action

 

Compatibility options:

 

-o when creating, same as --old-archive; when

extracting, same as --no-same-owner

 

Other options:

 

-?, --help give this help list

--restrict disable use of some potentially harmful options

--usage give a short usage message

--version print program version

 

Mandatory or optional arguments to long options are also mandatory or optional

for any corresponding short options.

 

The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.

The version control may be set with --backup or VERSION_CONTROL, values are:

 

none, off never make backups

t, numbered make numbered backups

nil, existing numbered if numbered backups exist, simple otherwise

never, simple always make simple backups

 

Valid arguments for the --quoting-style option are:

 

literal

shell

shell-always

c

c-maybe

escape

locale

clocale

 

*This* tar defaults to:

--format=gnu -f- -b20 --quoting-style=escape --rmt-command=/usr/sbin/rmt

--rsh-command=/usr/bin/rsh

 

Report bugs to <[email protected]<script cf-hash='f9e31' type="text/javascript"> /* */</script>>.

root@vps159147-rescue:~# Examples:

-bash: Examples:: command not found

root@vps159147-rescue:~# tar -cf archive.tar foo bar # Create archive.tar from files foo and bar.

tar: foo: Cannot stat: No such file or directory

tar: bar: Cannot stat: No such file or directory

tar: Exiting with failure status due to previous errors

root@vps159147-rescue:~# tar -tvf archive.tar # List all files in archive.tar verbosely.

tar -xf archive.tar # Extract all files from archive.tar.

root@vps159147-rescue:~# tar -xf archive.tar # Extract all files from archive.tar.

root@vps159147-rescue:~#

root@vps159147-rescue:~# Main operation mode:

-bash: Main: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# -A, --catenate, --concatenate append tar files to an archive

-bash: -A,: command not found

root@vps159147-rescue:~# -c, --create create a new archive

-bash: -c,: command not found

root@vps159147-rescue:~# -d, --diff, --compare find differences between archive and file system

-bash: -d,: command not found

root@vps159147-rescue:~# --delete delete from the archive (not on mag tapes!)

-r, --append append files to the end of an archive

-t, --list list the contents of an archive

--test-label test the archive volume label and exit

-u, --update only append files newer than copy in archive

-x, --extract, --get extract files from an archive

 

Operation modifiers:

 

--check-device check device numbers when creating incremental

-bash: !: event not found

root@vps159147-rescue:~# -r, --append append files to the end of an archive

-bash: -r,: command not found

root@vps159147-rescue:~# -t, --list list the contents of an archive

-bash: -t,: command not found

root@vps159147-rescue:~# --test-label test the archive volume label and exit

-bash: --test-label: command not found

root@vps159147-rescue:~# -u, --update only append files newer than copy in archive

-bash: -u,: command not found

root@vps159147-rescue:~# -x, --extract, --get extract files from an archive

-bash: -x,: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# Operation modifiers:

-bash: Operation: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# --check-device check device numbers when creating incremental

--level=NUMBER dump level for created listed-incremental archive

-bash: --check-device: command not found

root@vps159147-rescue:~# archives (default)

-n, --seek archive is seekable

--no-check-device do not check device numbers when creating

-bash: syntax error near unexpected token `default'

root@vps159147-rescue:~# -g, --listed-incremental=FILE handle new GNU-format incremental backup

-bash: -g,: command not found

root@vps159147-rescue:~# -G, --incremental handle old GNU-format incremental backup

-bash: -G,: command not found

root@vps159147-rescue:~# --ignore-failed-read do not exit with nonzero on unreadable files

-bash: --ignore-failed-read: command not found

root@vps159147-rescue:~# --level=NUMBER dump level for created listed-incremental archive

-bash: --level=NUMBER: command not found

root@vps159147-rescue:~# -n, --seek archive is seekable

-bash: -n,: command not found

root@vps159147-rescue:~# --no-check-device do not check device numbers when creating

-bash: --no-check-device: command not found

root@vps159147-rescue:~# incremental archives

-bash: incremental: command not found

root@vps159147-rescue:~# --no-seek archive is not seekable

-bash: --no-seek: command not found

root@vps159147-rescue:~# --occurrence[=NUMBER] process only the NUMBERth occurrence of each file

conjunction with one of the subcommands --delete,

--diff, --extract or --list and when a list of

files is given either on the command line or via

-bash: --occurrence[=NUMBER]: command not found

root@vps159147-rescue:~# in the archive; this option is valid only in

-bash: syntax error near unexpected token `in'

root@vps159147-rescue:~# conjunction with one of the subcommands --delete,

-bash: conjunction: command not found

the -T option; NUMBER defaults to 1

root@vps159147-rescue:~# --diff, --extract or --list and when a list of

-bash: --diff,: command not found

root@vps159147-rescue:~# files is given either on the command line or via

-bash: files: command not found

root@vps159147-rescue:~# the -T option; NUMBER defaults to 1

-bash: the: command not found

-bash: NUMBER: command not found

set version of the sparse format to use (implies

root@vps159147-rescue:~# --sparse-version=MAJOR[.MINOR]

-bash: --sparse-version=MAJOR[.MINOR]: command not found

root@vps159147-rescue:~# set version of the sparse format to use (implies

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# --sparse)

-bash: syntax error near unexpected token `)'

root@vps159147-rescue:~# -S, --sparse handle sparse files efficiently

-bash: -S,: command not found

 

Overwrite control:

root@vps159147-rescue:~#

root@vps159147-rescue:~# Overwrite control:

-bash: Overwrite: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# -k, --keep-old-files don't replace existing files when extracting

> --keep-newer-files don't replace existing files that are newer than

-bash: -k,: command not found

root@vps159147-rescue:~# their archive copies

-bash: their: command not found

root@vps159147-rescue:~# --no-overwrite-dir preserve metadata of existing directories

-bash: --no-overwrite-dir: command not found

root@vps159147-rescue:~# --overwrite overwrite existing files when extracting

-bash: --overwrite: command not found

--overwrite-dir overwrite metadata of existing directories when

root@vps159147-rescue:~# --overwrite-dir overwrite metadata of existing directories when

-bash: --overwrite-dir: command not found

root@vps159147-rescue:~# extracting (default)

-bash: syntax error near unexpected token `default'

root@vps159147-rescue:~# --recursive-unlink empty hierarchies prior to extracting directory

-bash: --recursive-unlink: command not found

root@vps159147-rescue:~# --remove-files remove files after adding them to the archive

-bash: --remove-files: command not found

root@vps159147-rescue:~# -U, --unlink-first remove each file prior to extracting over it

-bash: -U,: command not found

root@vps159147-rescue:~# -W, --verify attempt to verify the archive after writing it

-bash: -W,: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# Select output stream:

-bash: Select: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# --ignore-command-error ignore exit codes of children

-bash: --ignore-command-error: command not found

root@vps159147-rescue:~# --no-ignore-command-error treat non-zero exit codes of children as

-bash: --no-ignore-command-error: command not found

root@vps159147-rescue:~# error

-bash: error: command not found

root@vps159147-rescue:~# -O, --to-stdout extract files to standard output

-bash: -O,: command not found

root@vps159147-rescue:~# --to-command=COMMAND pipe extracted files to another program

-bash: --to-command=COMMAND: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# Handling of file attributes:

-bash: Handling: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# --atime-preserve[=METHOD] preserve access times on dumped files, either

-bash: --atime-preserve[=METHOD]: command not found

root@vps159147-rescue:~# by restoring the times after reading

-bash: by: command not found

root@vps159147-rescue:~# (METHOD='replace'; default) or by not setting the

-bash: syntax error near unexpected token `or'

root@vps159147-rescue:~# times in the first place (METHOD='system')

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# --delay-directory-restore delay setting modification times and

-bash: --delay-directory-restore: command not found

root@vps159147-rescue:~# permissions of extracted directories until the end

-bash: permissions: command not found

root@vps159147-rescue:~# of extraction

-bash: of: command not found

root@vps159147-rescue:~# --group=NAME force NAME as group for added files

-bash: --group=NAME: command not found

root@vps159147-rescue:~# --mode=CHANGES force (symbolic) mode CHANGES for added files

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# --mtime=DATE-OR-FILE set mtime for added files from DATE-OR-FILE

-bash: --mtime=DATE-OR-FILE: command not found

root@vps159147-rescue:~# -m, --touch don't extract file modified time

> --no-delay-directory-restore

> cancel the effect of --delay-directory-restore

> option

> --no-same-owner extract files as yourself (default for ordinary

> users)

> --no-same-permissions apply the user's umask when extracting permissions

-bash: -m,: command not found

root@vps159147-rescue:~# from the archive (default for ordinary users)

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# --numeric-owner always use numbers for user/group names

-bash: --numeric-owner: command not found

root@vps159147-rescue:~# --owner=NAME force NAME as owner for added files

-bash: --owner=NAME: command not found

root@vps159147-rescue:~# -p, --preserve-permissions, --same-permissions

-bash: -p,: command not found

root@vps159147-rescue:~# extract information about file permissions

-bash: extract: command not found

root@vps159147-rescue:~# (default for superuser)

-bash: default: command not found

root@vps159147-rescue:~# --preserve same as both -p and -s

-bash: --preserve: command not found

root@vps159147-rescue:~# --same-owner try extracting files with the same ownership as

-bash: --same-owner: command not found

root@vps159147-rescue:~# exists in the archive (default for superuser)

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# -s, --preserve-order, --same-order

-bash: -s,: command not found

root@vps159147-rescue:~# sort names to extract to match archive

--force-local archive file is local even if it has a colon

-F, --info-script=NAME, --new-volume-script=NAME

run script at end of each tape (implies -M)

-L, --tape-length=NUMBER change tape after writing NUMBER x 1024 bytes

-M, --multi-volume create/list/extract multi-volume archive

--rmt-command=COMMAND use given rmt COMMAND instead of rmt

--rsh-command=COMMAND use remote COMMAND instead of rsh

--volno-file=FILE use/update the volume number in FILE

 

Device blocking:

 

-b, --blocking-factor=BLOCKS BLOCKS x 512 bytes per record

-B, --read-full-records reblock as we read (for 4.2BSD pipes)

sort: open failed: names: No such file or directory

root@vps159147-rescue:~#

root@vps159147-rescue:~# Device selection and switching:

-bash: Device: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# -f, --file=ARCHIVE use archive file or device ARCHIVE

-bash: -f,: command not found

root@vps159147-rescue:~# --force-local archive file is local even if it has a colon

-bash: --force-local: command not found

root@vps159147-rescue:~# -F, --info-script=NAME, --new-volume-script=NAME

-bash: -F,: command not found

root@vps159147-rescue:~# run script at end of each tape (implies -M)

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# -L, --tape-length=NUMBER change tape after writing NUMBER x 1024 bytes

-bash: -L,: command not found

root@vps159147-rescue:~# -M, --multi-volume create/list/extract multi-volume archive

-bash: -M,: command not found

root@vps159147-rescue:~# --rmt-command=COMMAND use given rmt COMMAND instead of rmt

-bash: --rmt-command=COMMAND: command not found

root@vps159147-rescue:~# --rsh-command=COMMAND use remote COMMAND instead of rsh

-bash: --rsh-command=COMMAND: command not found

root@vps159147-rescue:~# --volno-file=FILE use/update the volume number in FILE

-bash: --volno-file=FILE: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# Device blocking:

-bash: Device: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# -b, --blocking-factor=BLOCKS BLOCKS x 512 bytes per record

-bash: -b,: command not found

root@vps159147-rescue:~# -B, --read-full-records reblock as we read (for 4.2BSD pipes)

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# -i, --ignore-zeros ignore zeroed blocks in archive (means EOF)

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# --record-size=NUMBER NUMBER of bytes per record, multiple of 512

-bash: --record-size=NUMBER: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# Archive format selection:

oldgnu GNU format as per tar <= 1.12

pax POSIX 1003.1-2001 (pax) format

posix same as pax

ustar POSIX 1003.1-1988 (ustar) format

v7 old V7 tar format

-bash: Archive: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# -H, --format=FORMAT create archive of the given format

-bash: -H,: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# FORMAT is one of the following:

-bash: FORMAT: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# gnu GNU tar 1.13.x format

-bash: gnu: command not found

root@vps159147-rescue:~# oldgnu GNU format as per tar <= 1.12

-bash: =: No such file or directory

root@vps159147-rescue:~# pax POSIX 1003.1-2001 (pax) format

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# posix same as pax

-bash: posix: command not found

root@vps159147-rescue:~# ustar POSIX 1003.1-1988 (ustar) format

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# v7 old V7 tar format

-bash: v7: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# --old-archive, --portability

-bash: --old-archive,: command not found

root@vps159147-rescue:~# same as --format=v7

-bash: same: command not found

root@vps159147-rescue:~# --pax-option=keyword[[:]=value][,keyword[[:]=value]]...

-bash: --pax-option=keyword[[:]=value][,keyword[[:]=value]]...: command not found

root@vps159147-rescue:~# control pax keywords

-bash: control: command not found

root@vps159147-rescue:~# --posix same as --format=posix

-bash: --posix: command not found

root@vps159147-rescue:~# -V, --label=TEXT create archive with volume name TEXT; at

-bash: -V,: command not found

-bash: at: command not found

root@vps159147-rescue:~# list/extract time, use TEXT as a globbing pattern

-bash: list/extract: No such file or directory

root@vps159147-rescue:~# for volume name

-bash: syntax error near unexpected token `name'

root@vps159147-rescue:~#

root@vps159147-rescue:~# Compression options:

-bash: Compression: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# -a, --auto-compress use archive suffix to determine the compression

-bash: -a,: command not found

root@vps159147-rescue:~# program

-bash: program: command not found

root@vps159147-rescue:~# -I, --use-compress-program=PROG

-bash: -I,: command not found

root@vps159147-rescue:~# filter through PROG (must accept -d)

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# -j, --bzip2 filter the archive through bzip2

-bash: -j,: command not found

root@vps159147-rescue:~# -J, --xz filter the archive through xz

-bash: -J,: command not found

root@vps159147-rescue:~# --lzip filter the archive through lzip

-bash: --lzip: command not found

root@vps159147-rescue:~# --lzma filter the archive through xz

-bash: --lzma: command not found

root@vps159147-rescue:~# --lzop

-bash: --lzop: command not found

root@vps159147-rescue:~# --no-auto-compress do not use archive suffix to determine the

-bash: --no-auto-compress: command not found

root@vps159147-rescue:~# compression program

-bash: compression: command not found

root@vps159147-rescue:~# -z, --gzip, --gunzip, --ungzip filter the archive through gzip

-bash: -z,: command not found

root@vps159147-rescue:~# -Z, --compress, --uncompress filter the archive through compress

-bash: -Z,: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# Local file selection:

-bash: Local: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# --add-file=FILE add given FILE to the archive (useful if its name

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# starts with a dash)

-bash: syntax error near unexpected token `)'

root@vps159147-rescue:~# --backup[=CONTROL] backup before removal, choose version CONTROL

-bash: --backup[=CONTROL]: command not found

root@vps159147-rescue:~# -C, --directory=DIR change to directory DIR

-bash: -C,: command not found

root@vps159147-rescue:~# --exclude=PATTERN exclude files, given as a PATTERN

-bash: --exclude=PATTERN: command not found

root@vps159147-rescue:~# --exclude-backups exclude backup and lock files

-bash: --exclude-backups: command not found

root@vps159147-rescue:~# --exclude-caches exclude contents of directories containing

-bash: --exclude-caches: command not found

root@vps159147-rescue:~# CACHEDIR.TAG, except for the tag file itself

-bash: CACHEDIR.TAG,: command not found

root@vps159147-rescue:~# --exclude-caches-all exclude directories containing CACHEDIR.TAG

-bash: --exclude-caches-all: command not found

root@vps159147-rescue:~# --exclude-caches-under exclude everything under directories containing

-bash: --exclude-caches-under: command not found

root@vps159147-rescue:~# CACHEDIR.TAG

-bash: CACHEDIR.TAG: command not found

root@vps159147-rescue:~# --exclude-tag=FILE exclude contents of directories containing FILE,

-bash: --exclude-tag=FILE: command not found

root@vps159147-rescue:~# except for FILE itself

-bash: except: command not found

root@vps159147-rescue:~# --exclude-tag-all=FILE exclude directories containing FILE

-bash: --exclude-tag-all=FILE: command not found

root@vps159147-rescue:~# --exclude-tag-under=FILE exclude everything under directories

-bash: --exclude-tag-under=FILE: command not found

root@vps159147-rescue:~# containing FILE

-bash: containing: command not found

root@vps159147-rescue:~# --exclude-vcs exclude version control system directories

-bash: --exclude-vcs: command not found

root@vps159147-rescue:~# -h, --dereference follow symlinks; archive and dump the files they

-bash: -h,: command not found

-bash: archive: command not found

root@vps159147-rescue:~# point to

-bash: point: command not found

root@vps159147-rescue:~# --hard-dereference follow hard links; archive and dump the files they

-bash: --hard-dereference: command not found

-bash: archive: command not found

begin at member MEMBER-NAME in the archive

--newer-mtime=DATE compare date and time when data changed only

--no-null disable the effect of the previous --null option

--no-recursion avoid descending automatically in directories

root@vps159147-rescue:~# refer to

-bash: refer: command not found

root@vps159147-rescue:~# -K, --starting-file=MEMBER-NAME

-bash: -K,: command not found

root@vps159147-rescue:~# begin at member MEMBER-NAME in the archive

-bash: begin: command not found

root@vps159147-rescue:~# --newer-mtime=DATE compare date and time when data changed only

-bash: --newer-mtime=DATE: command not found

root@vps159147-rescue:~# --no-null disable the effect of the previous --null option

-bash: --no-null: command not found

root@vps159147-rescue:~# --no-recursion avoid descending automatically in directories

-bash: --no-recursion: command not found

root@vps159147-rescue:~# --no-unquote do not unquote filenames read with -T

-bash: --no-unquote: command not found

root@vps159147-rescue:~# --null -T reads null-terminated names, disable -C

-bash: --null: command not found

root@vps159147-rescue:~# -N, --newer=DATE-OR-FILE, --after-date=DATE-OR-FILE

-bash: -N,: command not found

root@vps159147-rescue:~# only store files newer than DATE-OR-FILE

-bash: only: command not found

root@vps159147-rescue:~# --one-file-system stay in local file system when creating archive

-bash: --one-file-system: command not found

root@vps159147-rescue:~# -P, --absolute-names don't strip leading `/'s from file names

-bash: -P,: command not found

root@vps159147-rescue:~# --recursion recurse into directories (default)

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# --suffix=STRING backup before removal, override usual suffix ('~'

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# unless overridden by environment variable

-bash: unless: command not found

root@vps159147-rescue:~# SIMPLE_BACKUP_SUFFIX)

-bash: syntax error near unexpected token `)'

root@vps159147-rescue:~# -T, --files-from=FILE get names to extract or create from FILE

-bash: -T,: command not found

root@vps159147-rescue:~# --unquote unquote filenames read with -T (default)

-bash: syntax error near unexpected token `('

root@vps159147-rescue:~# -X, --exclude-from=FILE exclude patterns listed in FILE

-bash: -X,: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# File name transformations:

-bash: File: command not found

root@vps159147-rescue:~#

root@vps159147-rescue:~# --strip-components=NUMBER strip NUMBER leading components from file

-bash: --strip-components=NUMBER: command not found

root@vps159147-rescue:~# names on extraction

-bash: names: command not found

File name matching options (affect both exclude and include patterns):

 

--anchored patterns match file name start

--ignore-case ignore case

--no-anchored patterns match after any `/' (default for

exclusion)

--no-ignore-case case sensitive matching (default)

--no-wildcards verbatim string matching

--no-wildcards-match-slash wildcards do not match `/'

--wildcards use wildcards (default for exclusion)

--wildcards-match-slash wildcards match `/' (default for exclusion)

 

Informative output:

 

--checkpoint[=NUMBER] display progress messages every NUMBERth record

(default 10)

--checkpoint-action=ACTION execute ACTION on each checkpoint

--full-time print file time to its full resolution

--index-file=FILE send verbose output to FILE

-l, --check-links print a message if not all links are dumped

--no-quote-chars=STRING disable quoting for characters from STRING

--quote-chars=STRING additionally quote characters from STRING

--quoting-style=STYLE set name quoting style; see below for valid STYLE

values

-R, --block-number show block number within archive with each

message

--show-defaults show tar defaults

--show-omitted-dirs when listing or extracting, list each directory

that does not match search criteria

--show-transformed-names, --show-stored-names

show file or archive names after transformation

--totals[=SIGNAL] print total bytes after processing the archive;

with an argument - print total bytes when this

SIGNAL is delivered; Allowed signals are: SIGHUP,

SIGQUIT, SIGINT, SIGUSR1 and SIGUSR2; the names

without SIG prefix are also accepted

--utc print file modification times in UTC

-v, --verbose verbosely list files processed

--warning=KEYWORD warning control

-w, --interactive, --confirmation

ask for confirmation for every action

 

Compatibility options:

 

-o when creating, same as --old-archive; when

extracting, same as --no-same-owner

 

Other options:

 

-?, --help give this help list

--restrict disable use of some potentially harmful options

--usage give a short usage message

--version print program version

 

Mandatory or optional arguments to long options are also mandatory or optional

for any corresponding short options.

 

The backup suffix is `~', unless set with --suffix or SIMPLE_BACKUP_SUFFIX.

The version control may be set with --backup or VERSION_CONTROL, values are:

 

none, off never make backups

t, numbered make numbered backups

nil, existing numbered if numbered backups exist, simple otherwise

never, simple always make simple backups

 

Valid arguments for the --quoting-style option are:

 

literal

shell

shell-always

c

c-maybe

escape

locale

clocale

 

*This* tar defaults to:

--format=gnu -f- -b20 --quoting-style=escape --rmt-command=/usr/sbin/rmt

--rsh-command=/usr/bin/rsh

Opublikowano

Domyśla się ktoś może czemu przy próbie wejścia na cześć odpowiadającą za generacje świata wywala mi:

Fatal error: Smarty error: unable to write to $compile_dir '/opt/lampp/htdocs/templates_c'. Be sure $compile_dir is writable by the web server user. in /opt/lampp/htdocs/lib/smarty/smarty.class.php on line 1095
Opublikowano

 

Domyśla się ktoś może czemu przy próbie wejścia na cześć odpowiadającą za generacje świata wywala mi:

Fatal error: Smarty error: unable to write to $compile_dir '/opt/lampp/htdocs/templates_c'. Be sure $compile_dir is writable by the web server user. in /opt/lampp/htdocs/lib/smarty/smarty.class.php on line 1095

Plik smarty.class.php w linijce 1095 do poprawy. Ew. wgraj z innych plików. 

­

|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||­

​|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

​|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

​|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

​|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

Opublikowano

Plik smarty.class.php w linijce 1095 do poprawy. Ew. wgraj z innych plików. 

­

 

Problem z tym, że jest on zakodowany :/

Opublikowano

Dobra jednak sprawa wygląda inaczej. Wystarczyło zmienić tylko uprawnienia plików o czym zapomniałem. :)

  • 10 miesięcy temu...

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

×
×
  • Dodaj nową pozycję...