Quantcast
Channel: PunBB Forums — PunBB 1.4 additions
Viewing all 174 articles
Browse latest View live

how to make auto title

$
0
0

case..
im to lazy create some title, if title has blank
how to make auto title based on
- The first sentence or
- Date of the day with time or
- the link or number was generated

this make people not lazy too to create some title, some title is hard hhii big_smile
ane example to make auto like this? let codung together
pease ur help punbb
sorry my bad english.


[Theme] Oxygen OPT

$
0
0

Hello to all of PunBB community,
Today, I did some changes on Oxygen theme, I think I improved Oxygen to be a better theme. I call this style "Oxygen OPT" ( OPT=Optimized )
Changes and Improvements:

  • Oxygen_ie6.css, Oxygen_ie7.css and Oxygen_ie7.css are optimized.

  • index.html has some improvements.

  • Ubuntu Condensed is the default font.

  • Background uses gradients.

  • Normalize.CSS is attached.

  • Images and Avatars have border radius.

  • Responsivenav fonts are deleted. ( because using Ubuntu fonts )

Theme is the first version,Please tell me the mistakes or everything you think should fixed or added ( You can mail me for that. Mail Me. ) - I will update this theme later too - And you can download the theme from the bellow Links:

Download normal version
Download online loader version ( For poor servers )
I will add a new version later - That imports style sheet files from some CDNs and the size is really smaller.
Please participate in the poll too.
Online Loader Version ( For poor servers ) Loads all stylesheets and JavaScript files online, That means users' requests doesn't apply on your server, Rather it sends to 20Script servers.

Update: Oxygen OPT ( Online Loader ) link added.
Update: To use theme for Right To Left languages ( Like Persian and Arabic ) add the bellow code in the last line of Oxygen.min.css

html body * {direction: rtl !important;}

Topic in Persian PunBB forums
Update: I don't know why the fonts doesn't load correctly, However, You can wait for a final version ( and fix all bugs )
Demo
Good Luck! big_smile

Language Portuguese Brazilian -100%

$
0
0

Install.php = 0% (Other language)
Alguns erros você pode corrigir rapidamente veja a url do site que você está e em qual arquivo php, entre nele e edite (As vezes não funciona para todos wink)

I am  Brazilian-

Recado para brasileiros:

O install.php não está traduzido 100% pois ainda não alterei e está com a língua espanhola, já vou modificar porém vou descansar um pouco se possível alguém traduza na boa vontade para os usuários e disponibilize o download wink

Download:  https://mega.nz/#!9RgA2KZK!pLa502z_YiFu … xumZU08UU8



Demo : masterforum.16mb.com/forum/

Para versão: PunBB 1.4
Erros comente.

how to rewrite this url?

$
0
0

Hy all
i have question
i have url like this

http://punbb.informer.com/forums/search/?action=search&keywords=punbb+punbb&search=Search

How to chnage url can opened by this url

http://punbb.informer.com/forums/search/?q=punbb+punbb

Please your help big_smile

How to make query search display on title?

$
0
0

here image http://s11.postimg.org/4b7bd4uc3/2016_01_07_114353.png

when i search some query, the title on tab doesn't display query i was search there is display default lang

Forum message - blabla..

then how to make title with query search?

Forum message containing post "query was search" - blabla..

where i must edit file?
Please your help punbb big_smile

[Integration] Post to PunBB Forum from a PHP Form

$
0
0

Based on what I shared at http://punbb.informer.com/forums/topic/ … nbb-forum/ and have hosted at http://fwdlabs.com/resources/code/, I just got a question from "janereigytasuda" about how one could post to a PunBB forum from a PHP form outside of PunBB.

This variant of my other integration would really be for an administrator to create a domino effect and bypasses all of the handy security features of PunBB. That said, maybe it's useful to someone.

PHP variables to configure before the query:

$myPunBBPrefix = MySQL table prefix (e.g. punbb_)
$myPunBBUsername = PunBB username (e.g. admin)
$myPunBBSubject = PunBB topic title (e.g. "New Topic")
$myPunBBDate = strtotime() of a YYYY-MM-DD date (e.g. 2016-01-28)
$myPunBBForumID = PunBB forum ID number (e.g. 1)
$myPunBBUserID = PunBB user ID (e.g. 1)
$myPunBBMessage = PunBB post within a topic (e.g. "This is a post.")
$myPunBBUserIP = PunBB user IP address

Note: mysql_query() is was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0. MySQLi or PDO_MySQL should be used instead for more future-friendly code.

mysql_query("INSERT INTO ".$myPunBBPrefix."topics (poster, subject, posted, last_post, last_poster, forum_id) VALUES(
    '".$myPunBBUsername."',
    '".$myPunBBSubject."',
    ".$myPunBBDate.",
    ".$myPunBBDate.",
    '".$myPunBBUsername."',
    '".$myPunBBForumID."'
    )");
$myPunBBNewTopicID = mysql_insert_id();

First, we need to create a new topic. The above is the "insert." PunBB's topic needs the poster's username, the subject, the date string, the last posted string, the last poster's username (which can match the original poster's username), and the forum ID number. If you create an input form that sends that all to the right MySQL table, it will then show up in punBB as a new topic.

mysql_query("INSERT INTO ".$myPunBBPrefix."posts (poster, poster_id, message, posted, topic_id, poster_ip) VALUES(
    '".$myPunBBUsername."',
    ".$punbbUserID.",
    '".$myPunBBMessage."',
    ".$myPunBBDate.",
    ".$myPunBBNewTopicID.",
    '".$myPunBBUserIP."'
    )");
$myPunBBNewPostID = mysql_insert_id();

Second, we need to create the post within that topic. PunBB's posts need the poster's username, the poster's user ID, the message of that post, the date string, the topic ID, and the user's IP address. This then makes the post show up within the new topic.

Hope someone here finds it useful. I'll post it along with some other open-source work at http://fwdlabs.com/resources/code/.

The image mod I can't find anymore.

$
0
0

I know there's a mod for auto uploading external images which are added to post via img tag, I saw this mod for a couple of times but I can't find it now when I need it so bad. I hope someone will help me to find it. Thanks smile
PS: I did try searching google like "site:punbb.informer.com/forums image upload" and such. Did not work out.

[Extension] Pan More Options for PunBB

$
0
0

All options are on the same page .
Log in to Administration - Options - Advanced.

Added some extensions do not require the creation of additional fields such as online_today, who_view_topic...

- Authorization form on all pages
- Ability to show ads only on the main and only for guests .

The extension adds the ability to assign icons to each forum .
If the icon is not selected, the default ' icon will be displayed .

To set icons enable the option in Settings - Advanced
Then enter Home - Forums - Select a Forum - Change - Enter the file name
(Files , you must first fill in the directory /pan_more_options/img/icons/)

Download   Pan More Options


[Extension] Pan eXtplorer - File Manager for PunBB

$
0
0

Modular expansion eXtplorer the Pan - This file management component offline directly from the admin PunBB. You can also use this component to access files and directories on your server via FTP. Drag and drop files and folders, filter directories and sort lists of files using different criteria.

If the file manager of your hosting meager possibilities, it is possible that the product will solve this problem.

Main features of the component:
-------------------------------
    Ability to change file attributes (Chmod) - write permissions
    Easily view folders and files on your server.
    Edit, copy, Move (Drag & Drop) and deleting files.
    Creating and extracting archives on the server (zip, tar, tar.gz, tar / bz).
    The creation of new files and folders, search and more.

Requirements:
-------------------
* the PHP > 4.3
* the Pan eXtplorer can work in future versions of PunBB: 1.3 - 1.4.4
----------- --------

Browser Support:
-------------------
* of Internet Explorer> = 6.0
* of Firefox> = 2
* Safari> = 4
* Google Chrome / Iron> = 3
* Konqueror (KDE > 4.0)
* of Opera 10.5+
-------------------

File manager for PunBB panbb.ru

How to install the Pan eXtplorer file manager?

Go to Administrative Tools - Extensions , and set the component as a normal extension of PunBB.

To do this, go to "Extensions Manager" and click the "Install / Remove", then wait a few moments until the list of installed components, added a new component of the Pan eXtplorer.

Then go to Manage - the FM , is a control panel just installed extension - a file manager. You will have an intuitive control panel that allows you to access all functions that are relevant to the files.

you will see a window asking you to enter your login and password.

File manager for PunBB panbb.ru

The default username and password will be (admin / admin). Be sure to change your login and password as soon as you enter in the admin panel.

This will tell you pop-up as in the example below.

File manager for PunBB panbb.ru

Note : If you can not change the password, then check the permissions on the file (.htusers.php), it is located at:

http : / YourDomain / the extensions / pan_extplorer / the config /

and make them available for recording, set to (CHMOD 666).

In addition to these functions, you can also change the permissions, copy, delete and move files.

Pressing the "Back to the forum," you will be able to return to the admin panel PunBB.

Component Pan eXtplorer able to instantly upload pictures, video, and other media files, which is very important for those who have enough fast internet connection. This component works fine with versions 1.3 and 1.4 PunBB, easily installed and removed as needed without difficulty.

Download modular expansion Pan eXtplorer for PunBB

how to get link canonical?

[Extension] Pan Categories -category online in bread crumbs and titles

$
0
0

This extension allows you to add the name of the categories in the bread crumbs and the title .
Pan Categories does not have additional settings , expansion is enough to upload and install.

Breadcrumbs takes the following form :
Forum Name - > Name of category - > Section Title - > Theme Name

Note:
The name of the categories on the home page can not be done using hooks . This will require to make reference to this one unit on line 115 :

?>  <div class="main-head">
    <h2 class="hn"><span><?php echo forum_htmlencode($cur_forum['cat_name']) ?></span></h2>
  </div>

Download Pan Categories (testing)

Beautiful notification at the top of forum

$
0
0

Usually , at the entrance to the main page of the forum, the first thing catches your eye ? Of course all in different ways , but I think it would be useful to see not only the text :

New posts   Active topics    Unanswered    Private Messages

http://panbb.ru/forum/uploads/images/2016/04/03/9d78010b68f332a733d632352dbf4f0a.png

Download Pan Beautiful Notices

How to add more meta tag?

$
0
0

Hy punbb
i have url like this

http://punbb.informer.com/forums/search/?action=search&keywords=zz+zz+zz&search=Search

i want add meta tag for this file only in search.php
code i use is this

$forum_head['moremeta'] = '<meta property="og:type" content="search" />';

but i dont know where must place
how to add meta tag on spesific file like this?
please your help ^^

[Extension] Pan Period Of Time - Achievements

$
0
0

The expansion allows you to set the period of time from the starting point.

How to use extension Period Of Time?
Install extension.
Sign in to your - Profile - Signature -
Set the start date of the event and a description.

http://panbb.ru/forum/uploads/images/2016/05/11/e9985a416f946be7e8b1b66d295b9f21.png

Download Pan Period Of Time

[Extension] Pan Backup DB - Backup and Recovery Forum DB

$
0
0

You usually create a database offline backups? Probably go to the server, then in PhpMyAdmin, and then select and save a copy on your computer.

So make the most of the users and do as I'm including. But I admit, it's not very convenient. It is much better when you can make a backup directly from the admin forum.

http://panbb.ru/forum/uploads/images/2016/01/13/panbb_backup_db.png

Expanding Pan Backup DB allows you to create a database dump storing it in a file with the extension .sql. In the expansion, you can limit the maximum number of copies.

Download pan_backup_db.zip


[Extension]Pan Updater- Update version PunBB installation in one click

$
0
0

Many administrators to update PunBB engine from version 1.4.2 to version 1.4.4 first update to version 1.4.3, and then to Version 1.4.4. This chain is too zamorochennye, and inconvenient. then download the files, the files unpack ...

Pan Updater - is made up of two official archives of forum updates engine. Archive is already loaded in the expansion. To go from version 1.4.2 to version 1.4.4, simply:

- Install an extension
- Go to the admin panel in the Start
- Update the offline files
- After a successful update, click the link to the database update.

Attention! Install extensions only if you have not modified the following files:


/admin/db_update.php
/admin/extensions.php
/admin/forums.php
/admin/install.php
/admin/prune.php

/include/dblayer/mysql.php
/include/dblayer/mysql_innodb.php
/include/dblayer/mysqli.php
/include/dblayer/mysqli_innodb.php
/include/dblayer/pgsql.php
/include/dblayer/sqlite.php
/include/dblayer/sqlite3.php

/include/js/min/punbb.common.min.js

/include/template/admin.tpl
/include/template/help.tpl
/include/template/main.tpl
/include/template/maintenance.tpl
/include/template/redirect.tpl

/include/url/Default/forum_urls.php
/include/url/File_based/forum_urls.php
/include/url/File_based_(fancy)/forum_urls.php
/include/url/Folder_based/forum_urls.php
/include/url/Folder_based_(fancy)/forum_urls.php

/include/cache.php
/include/common_admin.php
/include/constants.php
/include/essentials.php
/include/flash_messenger.php
/include/functions.php
/include/parser.php
/include/search_functions.php

/edit.php
/header.php
/login.php
/misc.php
/moderate.php
/post.php
/profile.php
/register.php
/search.php

Download Pan Updater

Pan Time On The Line - Lines, runners, time period for the message

$
0
0

Hello, dear users and visitors. Meet the independent expansion of third-party services, allowing to display on your profile while before the event and after.

Expansion rewritten as a continuation of Period Of Time The , but is more flexible and functional. Promotion Period Of Time stopped, and avoid errors will be developed on the basis of the Pan Time On The Line.

If you are using Period Of Time , and want to go to the Pan of The Time The the On the Line , then do not rush to remove Period Of Time and install a new, existing extension.

Migration Guide on Pan Time On The Line
1 - Set the Pan Time On The Line
2 - Enter the extension settings
3 - At the bottom of the press - the Delegate the Options
4 - Remove Period Of Time.

In this case, users of your forum will not have to make any unnecessary movements.
The extension has two modes of the display period of time: in the profile and a message .

This is how it looks under the line of the message:
http://panbb.ru/forum/uploads/images/2016/05/23/ff0a2e4d68322c780200b0d3f36ad8d8.png

That's how it looks in the user's profile
http://panbb.ru/forum/uploads/images/2016/05/23/e5f681754c45726e6ed33e33f72f7aed.png

And so in the basic setting admin panel
http://panbb.ru/forum/uploads/images/2016/05/23/ca8e23e881abaaf02f004c28c35a16a2.png

It is desirable to select and download images of rulers and sliders so that the dimensions specified in the settings do not differ greatly from the true picture sizes. This will save resources on your server.

Download ruler and sliders Pan Time On The Line

[Extension] Pan Uploader - upload files and images to the PunBB forum

$
0
0

Two in one! This extension allows you to upload files and images to the PunBB forum. When you try to download large image , it will automatically be cut.

After installing the BB panel code reds will appear a button to upload files and images.
By pressing the pop-up to download the file dialog box .

http://panbb.ru/forum/uploads/images/2016/06/06/71a08aeed1de5d2824e9bb086cfe5a95.png

To generate links using the new tag [ file ] Name [/ file ] Size (Num Loads)

In the admin panel, 3 page Settings Images ( lists all downloaded ) and files (the list as well ) .
Once installed, you can set up groups that are allowed to download files and images , and each separately .

You can also customize the types of files and images , and their maximum size to download .
All files and images are downloaded to the folder /uplpads/image/ or /uplpads/files/ , respectively.
Next, the path is formed from the year, month and date , which is logical in my opinion ...

Dependencies :
pan framework
pun_jquery
pun_bbcode

Tested and works in Opera , Mozilla, Google Chrome
It does not work in IE8 and below .

Pan Uploader will in future be considered as a basis for plug-ins ( Gallery , Multimedia, Video and Audio )

It is important to know!
When installing the extension creates a table in the database to monitor the uploaded files . Try to make a backup copy of the table when reinstalling / extension removal.

To do this, you can use the Pen Backup DB tool , or you can create manually using phpMyAdmin.

Download the extension of Pan Uploader
PS: Thanks to all who participated in the aid : Sempai, Xakker's and jQuery developers Sebastian Tschan and Anthony Terrien for provided scripts .

Extensions translations to French

$
0
0

I am currently translating some extensions to French, in case anyone is interested. My progress is slow, but I am used to this kind of job.

add js in some place file

$
0
0

hy punbb lover..
i need ur help about create ext
how to add js only in file
- forum.php
- viewtopic.php
- viewpost.php
- seaarch.php

please ur help
link or tutorial is ok big_smile

Viewing all 174 articles
Browse latest View live