phpBB2 by Przemo
Support forów phpBB2 modified by Przemo

FAQFAQ - PIERWSZA POMOC!!  regulaminREGULAMIN  SzukajSZUKAJ  UżytkownicyUżytkownicy  GrupyGrupy  StatystykiStatystyki
RejestracjaRejestracja  ZalogujZaloguj  DownloadDownload  katalog Forów DyskusyjnychKatalog Forów   FAQ Video tutoriale

Poprzedni temat «» Następny temat
2 problems
Autor Wiadomość
Centurion



Pomógł: 543 razy
Posty: 1972
Wysłany: 19-09-2007, 22:45   

Kod:
Permission denied


you have to set the proper chmod (777) for db/ and db/db_backup directories
_________________
Poza forum pomagam tylko odpłatnie
• przenoszenie/łączenie/naprawianie baz danych
• instalacja/pisanie modów, aktualizacja for z zachowaniem modów
• programowanie php/mysql
 
     
Gadatliwa Kasia 

   
evilmc


Posty: 289
Wysłany: 20-09-2007, 04:26   

Centurion napisał/a:
Kod:
Permission denied


you have to set the proper chmod (777) for db/ and db/db_backup directories

thanx

[ Added: 20-09-2007, 11:36 ]
http://i7.tinypic.com/63hr5vo.png

http://i3.tinypic.com/68050d0.png


I'd like to translate these texts that are marked with red colour, but I don't know where they are. Thanks.
_________________
Looptroop - Bandit Queen
 
     
JrQ-


Pomógł: 147 razy
Posty: 1387
Wysłany: 21-09-2007, 22:56   

Second picture:
Open lang_english/lang_profile, find
Kod:
$lang['Account_inactive']

and translate!
 
     
evilmc


Posty: 289
Wysłany: 21-09-2007, 23:20   

thanx man.

[ Added: 01-11-2007, 17:29 ]
How do you change this colors?





[ Added: 01-11-2007, 17:50 ]
^^^?
_________________
Looptroop - Bandit Queen
 
     
joli
Yollien +Styler



Pomógł: 2988 razy
Posty: 16981
Wysłany: 01-11-2007, 22:44   

in overlib.js you must change this colour:
Kod:
if (typeof ol_bgcolor=='undefined') var ol_bgcolor="#6A3662";


[ Dodano: 01-11-2007, 22:49 ]
and 1. in AmigaOS.css in code:
Kod:
.menu            { font-size : 11px; color : #EEEEEE }
a.menu        { text-decoration: none; color : #EEEEEE; }
a.menu:hover    { text-decoration: none; color : #EEEEEE; }


but you have an error - this code must be:
Kod:
.menu            { font-size : 11px; color : #EEEEEE; }
a.menu        { text-decoration: none; color : #EEEEEE; }
a.menu:hover    { text-decoration: none; color : #EEEEEE; }
_________________
Walczę z warezami. Więc jak masz forum warezowe, nie proś mnie o pomoc i nie wchodź pod rękę, bo zniszczę.
Nie pisz do mnie na GG i PW,(chyba że proszę) bo nie odpowiem, a Ty dostaniesz bonusik. Masz forum do zadawania pytań!!! Poza forum pomagam TYLKO odpłatnie.
liberte d'expression pour tout le monde... OFICJALNY DOWNLOAD STYLÓW - style ogólnodostępne i na zamówienie - PORTFOLIO JOLI
 
     
evilmc


Posty: 289
Wysłany: 01-11-2007, 23:02   

joli, thanx ;)

[ Added: 18-11-2007, 22:28 ]
Warning: mysql_connect() [function.mysql-connect]: Too many connections in /home/serbianu/public_html/forum/db/mysql4.php on line 48
phpBB by Przemo : critical error

Could not connect to the database.
Too many connections

why?
_________________
Looptroop - Bandit Queen
 
     
chelloPL



Pomógł: 413 razy
Posty: 2544
Wysłany: 19-11-2007, 15:38   

evilmc napisał/a:
Too many connections

Ask your webmaster/database admin why you got this error.
 
     
evilmc


Posty: 289
Wysłany: 06-12-2007, 21:36   

Active Link Referrer Blocker

why does this error occurs, when I put this code in my forum and when you click for example www.google.com from my forum, this appears...

my forum is Przemo phpbb2 www.anonymz.com

my code is:
Kod:
// We do URLs in several different ways..
    $bbcode_tpl['url1'] = str_replace('{URL}', '\\1', $bbcode_tpl['url']);
    $bbcode_tpl['url1'] = str_replace('{DESCRIPTION}', '\\1', $bbcode_tpl['url1']);

    $bbcode_tpl['url2'] = str_replace('{URL}', 'http://\\1', $bbcode_tpl['url']);
    $bbcode_tpl['url2'] = str_replace('{DESCRIPTION}', '\\1', $bbcode_tpl['url2']);

    $bbcode_tpl['url3'] = str_replace('{URL}', '\\1', $bbcode_tpl['url']);
    $bbcode_tpl['url3'] = str_replace('{DESCRIPTION}', '\\2', $bbcode_tpl['url3']);

    $bbcode_tpl['url4'] = str_replace('{URL}', 'http://\\1', $bbcode_tpl['url']);
    $bbcode_tpl['url4'] = str_replace('{DESCRIPTION}', '\\3', $bbcode_tpl['url4']);

and:
Kod:
// matches an "xxxx://yyyy" URL at the start of a line, or after a space.
    // xxxx can only be alpha characters.
    // yyyy is anything up to the first space, newline, comma, double quote or <
    $ret = preg_replace("#(^|[\n ])([\w]+?://\S[\w\#()$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"\\2\" rel=\"nofollow\" target=\"_blank\" class=\"postlink\">\\2</a>", $ret);

    // matches a "www|ftp.xxxx.yyyy[/zzzz]" kinda lazy URL thing
    // Must contain at least 2 dots. xxxx contains either alphanum, or "-"
    // zzzz is optional.. will contain everything up to the first space, newline,
    // comma, double quote or <.
    $ret = preg_replace("#(^|[\n ])((www|ftp)\.\S[\w\#()$%&~/.\-;:=,?@\[\]+]*)#is", "\\1<a href=\"http://\\2\" rel=\"nofollow\" target=\"_blank\" class=\"postlink\">\\2</a>", $ret);

and when I copy this Active Link Referrer Blocker code to my forum, this error appears
http://i12.tinypic.com/89rtil4.jpg

[ Added: 06-01-2008, 14:55 ]


how can I put this 'online' image in size 80X80 without being this narrow?

and



how can I put 'add response(answer) to my forum?

THANX
_________________
Looptroop - Bandit Queen
 
     
chelloPL



Pomógł: 413 razy
Posty: 2544
Wysłany: 06-01-2008, 15:29   

evilmc napisał/a:
how can I put this 'online' image in size 80X80 without being this narrow?

Just replace templates/AmigaOS/images/whosonline.gif to your 80x80 gif image.
This column should auto-adjust width to image size.

evilmc napisał/a:
how can I put 'add response(answer) to my forum?

When post merging is turned on, it is merged automatically (as your post above).
This merge option is in your PA -> general -> configuration -> posting -> Split double messages*
Merges post text on posting to the last message in topic instead of adding a new one

* Note: I think there is an error in translation - it should be "Merge double messages" instead of "Split double messages". The same for next configuration entries:
Split admin's posts
Split moderator's posts
 
     
evilmc


Posty: 289
Wysłany: 26-02-2008, 23:04   

Why cant i delete google ads from the forum???


------------

Why do i get shown this error message every time i want to change my profile on the forum? It also happens to all the members????


since i haven't been able to solve my problem with birthday displays on my forum for 5 months, can this birthdays module be deleted and then re-installed?
_________________
Looptroop - Bandit Queen
 
     
arcy



Pomógł: 509 razy
Posty: 3761
Wysłany: 26-02-2008, 23:19   

evilmc napisał/a:
Why cant i delete google ads from the forum???

- You must go and login in to Your phpmyadmin.
- Choose database forum on the left side.
- Then click icon on the phpbb_advertisement table.
- Now You see list of Your advertisement
- Find google advertisement and click for delete
_________________
| Regulamin | F.A.Q. | Szukaj | Oficjalny podręcznik administratora phpBB2 by Przemo |
| arcy.net - nowości ze świata phpBB by Przemo, Opera, Android | w tym państwie pełnym nienawiści, rap po godzinach i luz ponad wszystkim... | Opera Browser
|
 
     
evilmc


Posty: 289
Wysłany: 28-02-2008, 00:22   

arcy, thanx


since i haven't been able to solve my problem with birthday displays on my forum for 5 months, can this birthdays module be deleted and then re-installed?
_________________
Looptroop - Bandit Queen
 
     
arcy



Pomógł: 509 razy
Posty: 3761
Wysłany: 28-02-2008, 11:48   

evilmc, I check this in Your forum. I register on Your forum with 20-11-1914 date of birdth. So i think meybe is wrong configuration on AP. Check this out:
- Go tu Administration Panel | Configuration | Main page
- You have "Show users with a birthday today" options here
- Change this options: Max user age --> 100 and Min user age --> 1

When I choose year of birdth from 1910 to 1957 it works ok. So check configuration on AP.
_________________
| Regulamin | F.A.Q. | Szukaj | Oficjalny podręcznik administratora phpBB2 by Przemo |
| arcy.net - nowości ze świata phpBB by Przemo, Opera, Android | w tym państwie pełnym nienawiści, rap po godzinach i luz ponad wszystkim... | Opera Browser
|
 
     
evilmc


Posty: 289
Wysłany: 29-02-2008, 21:18   

arcy, you are the best :) thanks!
_________________
Looptroop - Bandit Queen
 
     
Gadatliwa Kasia 

   
arcy



Pomógł: 509 razy
Posty: 3761
Wysłany: 03-03-2008, 21:07   

:) Your welcome :)
_________________
| Regulamin | F.A.Q. | Szukaj | Oficjalny podręcznik administratora phpBB2 by Przemo |
| arcy.net - nowości ze świata phpBB by Przemo, Opera, Android | w tym państwie pełnym nienawiści, rap po godzinach i luz ponad wszystkim... | Opera Browser
|
 
     
Wyświetl posty z ostatnich:   
Odpowiedz do tematu
Nie możesz pisać nowych tematów
Nie możesz odpowiadać w tematach
Nie możesz zmieniać swoich postów
Nie możesz usuwać swoich postów
Nie możesz głosować w ankietach
Możesz załączać pliki na tym forum
Możesz ściągać załączniki na tym forum
Dodaj temat do Ulubionych
Wersja do druku

Skocz do:  

Kopiowanie wszelkich treści zawartych na forum, modyfikacji oraz instrukcji bez zgody administracji i autorów tematów/postów zabronione!

Powered by phpBB modified by Przemo © 2003 phpBB
Strona wygenerowana w 0,09 sekundy. Zapytań do SQL: 12
Polecane serwisy

Najlepsze oprogramowanie do prowadzenia sklepu internetowegoNajlepszy program do sklepu firmowany przez Przem'a

Sklep z gadżetami

serwis laptopów

phpbb

Design Cart - Tworzenie sklepu internetowego

iRonin.IT

• Zamów reklamę