Skocz do zawartości

DawPi

Manager
  • Postów

    78 199
  • Dołączył

  • Ostatnia wizyta

  • Wygrane w rankingu

    574

Treść opublikowana przez DawPi

  1. Oj, byłem pewny, że zrobiłem słowo 'mowa' jako link. Edytowane.
  2. Nie ma.
  3. File Name: (DP30) Latest IP.Gallery Image 1.0.0 File Submitter: DawPi File Submitted: 05 Aug 2009 File Updated: 05 Aug 2009 File Category: IPB 3.0.x Mods Description: Show latest image from IP.Gallery in sidebar. Mod is compatible with permissions to each category and load lang from IP.Gallery application. Click here to download this file Wyświetl pełny artykuł
  4. File Name: (DP30) Latest IP.Gallery Image 1.0.0 File Submitter: DawPi File Submitted: 05 Aug 2009 File Category: IPB 3.0.x Mods Description: Show latest image from IP.Gallery in sidebar. Mod is compatible with permissions to each category and load lang from IP.Gallery application. Click here to download this file Wyświetl pełny artykuł
  5. Description: Show latest image from IP.Gallery in sidebar. Mod is compatible with permissions to each category and load lang from IP.Gallery application. Wyświetl pełny artykuł
  6. File Name: (DP30) Latest IP.Gallery Image File Submitter: DawPi File Submitted: 5 Aug 2009 File Category: IP.Board v3.0.x Mods Resource Type: Hook Version: 1.0.0 Description: Show latest image from IP.Gallery in sidebar. Mod is compatible with permissions to each category and load lang from IP.Gallery application. Click here to download this file Wyświetl pełny artykuł
  7. Description: Show latest image from IP.Gallery in sidebar. Mod is compatible with permissions to each category and load lang from IP.Gallery application. Wyświetl pełny artykuł
  8. Modyfikacja napisana. Temat zamykam, w razie problemów/pytań itd. odnośnie modyfikacji proszę skorzystać z tematu związanego z daną modyfikacją.
  9. Nazwa pliku: (DP30) Latest IP.Gallery Image Autor: DawPi Data wysłania: 05 sie 2009 Kategoria: Modyfikacje Wersja modyfikacji: 1.0.0 Opis: Wyświetla najnowszy plik z IP.Gallery na forum w sidebarze. Modyfikacja poprawnie rozpoznaje uprawnienia do kategorii oraz korzysta z plików językowych forum. Pobierz plik
  10. 62 pobrań

    Opis: Wyświetla najnowszy plik z IP.Gallery na forum w sidebarze. Modyfikacja poprawnie rozpoznaje uprawnienia do kategorii oraz korzysta z plików językowych forum.
    Darmowy
  11. Aż do momentu wgrania nowego skina..?
  12. Nie rozumiemy się:
  13. A działało to kiedykolwiek?
  14. Problem ROZWIĄZANY. Jeśli są jakiekolwiek wątpliwości, pytania proszę o założenie nowego tematu. Wszelkie uzasadnione reklamacje/pretensje/sugestie/rady przyjmuje ekipa forum.
  15. To Twój: <script type='text/javascript'> jsDebug = 0; /* Must come before JS includes */ USE_RTE = 0; </script> <script type='text/javascript' src='http://www.madmadness.pl/public/js/3rd_party/prototype.js'></script> <script type='text/javascript' src='http://www.madmadness.pl/public/js/ipb.js?load=quickpm,post,poll,attach,editor'></script> <script type='text/javascript' src='http://www.madmadness.pl/public/js/3rd_party/scriptaculous/scriptaculous-cache.js'></script> <script type="text/javascript" src='http://www.madmadness.pl/cache/lang_cache/2/ipb.lang.js' charset='UTF-8'></script> <script type='text/javascript'> Loader.boot(); </script> A to mój: <script type='text/javascript'> jsDebug = 0; /* Must come before JS includes */ USE_RTE = 0; </script> <script type='text/javascript' src='http://forum.invisionize.pl/public/min/index.php?g=js'></script> <script type='text/javascript' src='http://forum.invisionize.pl/public/min/index.php?f=public/js/ipb.js,public/js/ips.quickpm.js,public/js/ips.post.js,public/js/ips.poll.js,public/js/ips.topic.js,public/js/ips.attach.js,public/js/ips.editor.js,cache/lang_cache/1/ipb.lang.js' charset='UTF-8'></script> <script type='text/javascript'> Loader.boot(); </script> Wychodzi na to, że nie ładuje wszystkich plików. Wyłącz ładowanie z Google - to po pierwsze. A po drugie to myślę.
  16. Podaj jakieś konto testowe.
  17. #(DP23) System wymiany linkow include ('ad_logic.php'); $text = str_replace( "<% WYMIANA_LINKOW %>" , $ad_logic->ad_network($PATH_TO_AD_FILE) , $text );
  18. Tak to jest jak się nie myśli. Włączyłeś ludziom rozbudowany edytor tekstu, w tym pewnie sobie, który nie pokazuje BBCode'ów, a teraz nie wiem o co chozii. ;] A chodzi aż miło:
  19. Ja wiem, ale cache'owany jest do plików na FTP.
  20. cr3pt: nie wygląda. Po prostu nie działają ikony od BIU itd. Czyli po kliku nic się nie dzieje. Kiedyś miałem to spowodowane plikiem .htaccess w folderze z plikami .js.
  21. UPDATE ibf_posts SET post = REPLACE(post, 'stary_link', 'nowy_link') WHERE post LIKE '%stary_link%';
  22. Na innych skinach działa?
  23. On IP.Board's new My Settings pages, there are a ton of options for your members to change. Quite often, questions come up of the nature "How do I change the default value on one of these settings?" and there is usually nothing built-in the the product to allow these default values to be changed; they typically need to be changed via a SQL query. Here are the queries you can run, either through your SQL Toolbox or phpMyAdmin to accomplish the associated change. There are a couple things to keep in mind. First, remember that you may need to change the table names in these queries if you are using a different table prefix. All of these queries assume you are using the old standard table prefix of 'ibf_'. If you have a different prefix, or no prefix at all, be sure to adjust the queries to be affecting the way your tables are named. In addition, note that there are 2 queries for each of these. The first query's job is to change the value of this option for all currently registered members. The second query changes the structure of the database table to set a new default value, which will then be used for all newly registering members. So if you want all of your members now and in the future to have the default value changed, be sure to run both queries. Now on to the good bit! Settings tab -> General Settings "Enable visual (RTE) editor?" checked by default: UPDATE ibf_members SET members_editor_choice='rte'; ALTER TABLE ibf_members CHANGE members_editor_choice members_editor_choice CHAR(3) NOT NULL DEFAULT 'rte'; Settings tab -> General Settings "Enable flash uploader?" checked by default: UPDATE ibf_members SET member_uploader='flash'; ALTER TABLE ibf_members CHANGE member_uploader member_uploader varchar(32) NOT NULL DEFAULT 'flash'; Profile tab -> Change Profile Information "Enable Profile Comments" checked by default: UPDATE ibf_profile_portal SET pp_setting_count_comments=1; ALTER TABLE ibf_profile_portal CHANGE pp_setting_count_comments pp_setting_count_comments INT(2) NOT NULL DEFAULT '1'; Profile tab -> Change Profile Information "Show my friends in my profile" checked by default: UPDATE ibf_profile_portal SET pp_setting_count_friends=1; ALTER TABLE ibf_profile_portal CHANGE pp_setting_count_friends pp_setting_count_friends INT(2) NOT NULL DEFAULT '1'; Profile tab -> Change Profile Information "Friend Approval" set to "Enabled - Only add when I approve them" by default: UPDATE ibf_profile_portal SET pp_setting_moderate_friends=1; ALTER TABLE ibf_profile_portal CHANGE pp_setting_moderate_friends pp_setting_moderate_friends TINYINT(1) NOT NULL DEFAULT '1'; Profile tab -> Change Profile Information "Show X latest visitors on my profile" set to a different value by default: UPDATE ibf_profile_portal SET pp_setting_count_visitors=X; ALTER TABLE ibf_profile_portal CHANGE pp_setting_count_visitors pp_setting_count_visitors INT(2) NOT NULL DEFAULT 'X'; Note: replace X with the number you want here by default. It can only be one of the following to avoid any problems with people changing this value on their My Settings pages: 0, 3, 5 or 10. Wyświetl pełny artykuł
  24. Problem ROZWIĄZANY. Jeśli są jakiekolwiek wątpliwości, pytania proszę o założenie nowego tematu. Wszelkie uzasadnione reklamacje/pretensje/sugestie/rady przyjmuje ekipa forum.
  25. Hej, Error: Unknown column 'topic_prefix_use' in 'field list' Zainstalować poprawnie modyfikację od prefixów.
×
×
  • Dodaj nową pozycję...

Powiadomienie o plikach cookie

Umieściliśmy na Twoim urządzeniu pliki cookie, aby pomóc Ci usprawnić przeglądanie strony. Możesz dostosować ustawienia plików cookie, w przeciwnym wypadku zakładamy, że wyrażasz na to zgodę.