Yes, im uploading fix right now.
552 2011-03-30 16:58
Re: update 1.2.20 punbb to latest how ? (1 replies, posted in PunBB 1.3 troubleshooting)
Update help in our wiki — http://punbb.informer.com/wiki/punbb13/installation
553 2011-03-29 10:08
Re: Edit or remove existing bans bug in 1.3.5 (11 replies, posted in PunBB 1.3 bug reports)
Better install hotfix and replace files profile.php and admin/bans.php from punbb-1.3.5
554 2011-03-29 10:06
Re: The error occurred in moderate.php!!! (5 replies, posted in PunBB 1.3 troubleshooting)
Try this version https://github.com/downloads/punbb/exte … 1.2.tar.gz
555 2011-03-29 09:07
Re: The error occurred in moderate.php!!! (5 replies, posted in PunBB 1.3 troubleshooting)
Looks like error in pun_karma mod, not moderate.php.
We check this, thanks for bug report.
What version of forum and pun_karma you use?
How we can reproduce problem?
556 2011-03-29 06:18
Re: how to change all date to jalali date (persian date) (4 replies, posted in PunBB 1.3 additions)
Yes, u can create extensions.
Just use hooks in function format_time.
557 2011-03-29 06:17
Re: Edit or remove existing bans bug in 1.3.5 (11 replies, posted in PunBB 1.3 bug reports)
xper, or dont use hotfix or revert files to original from 1.3.5
558 2011-03-28 18:35
Re: how to change all date to jalali date (persian date) (4 replies, posted in PunBB 1.3 additions)
Find
function format_time
in include/functions.php
This function format all date in forum.
Or maybe you change format date in forum admin settings.
559 2011-03-28 18:33
Re: Database reported: Duplicate entry '0' for key 2 (Errno: 1062) (3 replies, posted in PunBB 1.3 troubleshooting)
Check DB for errors.
560 2011-03-28 18:32
Re: Database reported: Duplicate entry '0' for key 2 ! (2 replies, posted in PunBB 1.2 troubleshooting)
Check DB for errors.
561 2011-03-28 09:55
Re: Last post in the topic (1 replies, posted in PunBB 1.3 additions)
Use search, man.
562 2011-03-27 14:47
Re: Problem with registration. (7 replies, posted in PunBB 1.3 bug reports)
Looks like you use some extension like registration approval or invite.
Try to check list of installed extensions.
563 2011-03-27 12:30
Re: Problem with registration. (7 replies, posted in PunBB 1.3 bug reports)
You need look this file on filesystem, maybe use ftp or filemanager - not browser.
564 2011-03-27 11:23
Re: Problem with registration. (7 replies, posted in PunBB 1.3 bug reports)
fma16, look in cache/cache_config.php value of o_regs_allow - it must be set in 1 if you allow registration.
565 2011-03-27 08:29
Re: Edit or remove existing bans bug in 1.3.5 (11 replies, posted in PunBB 1.3 bug reports)
We test worked hotfix - please wait.
566 2011-03-26 07:42
Re: Edit or remove existing bans bug in 1.3.5 (11 replies, posted in PunBB 1.3 bug reports)
xper, try this fix [deleted becouse we tested hotfix]
just replace files with this.
567 2011-03-25 17:52
Re: FLUBBB 1.2.21 ---> PUNBB 1.3.5 (1 replies, posted in PunBB 1.2 troubleshooting)
axa, is not simple.
1) You lost all your mods.
2) You need a separate place for experiments.
3) Make backup DB and htdocs.
4) Make backup DB and htdocs twice.
5) Please, read this manual http://punbb.informer.com/wiki/punbb13/installation
568 2011-03-25 17:42
Re: Traditional Chinese language pack for PunBB 1.3 (3 replies, posted in PunBB 1.3 additions)
Thanks, added too lang repo - https://github.com/punbb/langs
569 2011-03-25 16:02
Re: Query without prefix (3 replies, posted in PunBB 1.3 discussion)
I must see all file with changes for help.
570 2011-03-25 14:22
Re: Query without prefix (3 replies, posted in PunBB 1.3 discussion)
Try this code
$query['PARAMS']['NO_PREFIX'] = 1;
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
unset($query['PARAMS']['NO_PREFIX']); // maybe unset($query);
And dont use num_rows() if u can - it deprecated in punbb-1.4 and will be removed in 1.5.
You can replace num_rows like this
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
$companyPresentation = $forum_db->fetch_assoc($result);
if (!$companyPresentation)
error
else
ok
571 2011-03-25 08:03
Re: fixed width for columns (4 replies, posted in PunBB 1.3 additions)
Is not one line.
You need understand how html+css works.
572 2011-03-25 07:33
Topic: Development moved to GitHub (6 replies, posted in News)
With this, we have moved the development of PunBB to Github.
You may now find the official source code repository at http://github.com/punbb/punbb.
This should make the project a little easier to manage, and in particular, make it easier for developers to contribute patches.
Having the project at Github will allow us to benefit from the fact many open source developers are already familiar with it, and allow us to take advantage of the simpler pull request process. As always, we welcome you to fork our repository, enhance PunBB to meet your needs, then submit a pull request to have it considered for inclusion in the master PunBB project.
Have a nice day! ;-)
573 2011-03-25 07:03
Re: fixed width for columns (4 replies, posted in PunBB 1.3 additions)
1) in Oxygen.css
2) CSS code
P.S. Just install firebug.
574 2011-03-24 07:32
Re: sqlite3 and PDO in PunBB (4 replies, posted in Feature requests)
Have worked prototype SQLite3 in dev branch punbb-1.4.
575 2011-03-15 11:02
Re: Problem with IP blocking? (3 replies, posted in PunBB 1.3 bug reports)
What is otherwise the best way to prevent spammer registrations? Is it to install the pun_stop_bots v0.2? (we have about 30 spam accounts registered each day).
You can try http://punbb.informer.com/forums/topic/ … am-system/ but it beta-version.