Hi,

I update forum from 1.3.4 to 1.4.2 and I have problem when I try instal any extension from admin panel.
On 1.3.4 works fine.

I get error "Parse error: syntax error, unexpected ';' in ../admin/extensions.php(707) : eval()'d code on line 951 "

Do you know where it can be a problem?

Hi Sam,

I install new version of your editor (v.1.0.7).
It works on Chrome, Firefox and Opera on my site, but not working on IE9.

Can you check it. If problem is related to some extension on my forum or to new release of editor.

Regards
Darek

Hi,

Thanks for replay and checking the error on my site.
The problem was caused by facebook plugin, but new version solves the problem.
Now it works perfect on most common browser.

Version:
PunBB 1.3.5

I have installed many plugins.

Installed plugins
Admin add user v1.1.1.
Animated avatars v0.1.1.
Broadcast e-mail v0.2
Events registration v0.8.2
JS post quote v2.2.2
Post karma v1.1.2.
Posts RSS feed v1.0.
Private Messaging v1.2.9.
Pun Admin Manage Extensions Improved v1.4.
Pun Move Posts v1.0.1.
Pun tags v1.5.
PunBB Repository v1.2.3.
WYSIWYG BBCode editor v1.0.0.

Hi,

I find probably important bug.
Can you look on that, because currently users which use Opera or Chrom can't creat new topic and post.
(With statistic it is about 15% of users.)

See on the screen
When you enter all required data, you have still message to enter the required fields

http://s4.postimage.org/mked9lyx2/Required_field.png

Browsers:

Opera 11.11 - NOK
Chrome 13.0.782.220 m - NOK
Firefox 6.0.2 - OK
IE7 - OK

Thanks for replay,

I'm using 5.2.8 on a share hosting, so I can't change it.
But as you say "sc_wysiwyg" working without "sc_sbbcode", so there are no problem.

So I'm waiting for new update.  smile

Very nice editor. I started using them on my page.

Question
1.    If “sc_sbbcode” installation is required, because currently  I install only “sc_wysiwyg” and is working correctly. (Can I use only sc_wysiwyg?)
2.    How can I modify displayed number of function. I would like display only few most common liek: bold, italic, upload file etc.

Errors
1.    When I install “sc_sbbcode” the error appears in parse.php (801), described by bingiman.

Functionality/Features

1.    When I click on “Font Color” I open very slow (about 2-3s), maybe better show only a few major color
       (like in Windows Paint). When I want use non common color I can switch to source code.
2.    Insert a image function - nice if it were an optional possibility to give height and width
3.    Nice to have possibility to upload image on forum server (not third party hosting) or upload on other image hosting server automatically like in “Nice editor” (In this editor are 2 option by link or by imageshack.us,  see page: http://nicedit.com/demos.php

Hi,

I figure out the problem.
I have on file header.php my own sql query,

$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);

with name $result, which have inpact on:

// If there are topics in this forum
if ($forum_db->num_rows($result)) {show topics} else {} 

in viewforum.php file.

PS: Topic can be closed.

Hi,

I have a problem with new user group.
I added new group "Firmy" based on "Members" group. (The same settings)

g_id     g_title               g_user_title
1    Administrators          Administrator
2    Guest                     NULL
3    Members                 NULL
4    Moderators              Moderator
5    Firmy                      NULL


The problem is that users from new group don't see topics and posts.
User from members group see all topics and post.

http://s2.postimage.org/2npz4ltgk/image.jpg

When I change in DB in table "users" - group_id from 5 ("Firmy") to 3 ("Members") works fine.

Where there may be a problem?

10

(3 replies, posted in PunBB 1.3 discussion)

Thanks,

But it cause problem like show below, when I set and then unset $query['PARAMS']['NO_PREFIX']

Notice: Undefined index: poster in site/forum/viewforum.php on line 211

Notice: Undefined index: moved_to in site/forum/viewforum.php on line 213

....

Notice: Undefined index: last_post in site/forum/viewforum.php on line 291

Notice: Undefined index: last_poster in site/forum/viewforum.php on line 291

Probably the best way is change table name or add exception to dblayer files.

11

(3 replies, posted in PunBB 1.3 discussion)

Hi,

I hava a problem with query.
I modify file header.php
In config I have prefix set to 'forum_'

$query = array(            
    'SELECT'    => 'id, link',
    'FROM'        => 'company',
    'WHERE'        => 'user_id='.$forum_user['id']
 );
           
// $query['PARAMS']['NO_PREFIX'] = 1;

$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);

 if (!$forum_db->num_rows($result))
       $companyPresentation = false;
 else
       $companyPresentation = $forum_db->fetch_assoc($result);

I get message

An error was encountered
The error occurred on line 180 in /home2/campecom/public_html/demo.goldproject.pl/forum/header.php
Database reported: Table 'forum_company' doesn't exist (Errno: 1146).

I need query to table 'company' with no prefix.
When I use '$query['PARAMS']['NO_PREFIX'] = 1;' it works, but other standard queries  no work properly.

The question is , how can I sent query with no prefix.