2 years ago I worked on this task for research purposes, it was the extension of hcs_shop.
In the process of work, I was faced with a problem. Punbb is not object-oriented, as is known.
The development of the extension of the functional paradigm threatened to turn into a nightmare.
To avoid the functional programming style and to obtain convenient tool for the development of extensions was created a new extension: developer_helper. In its essence it is a superstructure over Punbb. It allows you to develop extensions for punbb in object-oriented MVC style. There are several extensions built on it:
reputaion
Image uploader
nya_fields
nya_first_post
nya_thanks
And the practice shows that it helps to solve almost any problem.
Now hcs_shop as shopping cart system is an outdated, it is incompatible with the developer_helper. Nevertheless it may serve as the source of information about the structure of data and information structure.
So, the main idea is the use of developer_helper.
If my English is bad for understanding, ask and I'll try to Google-translator replied clearer:)
26 2012-08-14 17:01
Re: Punbb backbone to shopping cart system (8 replies, posted in Discussions)
27 2012-08-13 02:56
Re: Punbb backbone to shopping cart system (8 replies, posted in Discussions)
I'm interested and i have the developments on this issue.
28 2012-08-10 16:54
Re: Sorry! The page could not be loaded. (2 replies, posted in PunBB 1.4 troubleshooting)
enable debug mode in config.php
define('FORUM_DEBUG', 1);
define('FORUM_SHOW_QUERIES', 1);
29 2012-07-26 06:01
Re: not visualize post (10 replies, posted in PunBB 1.4 troubleshooting)
replace this with your forum url
30 2012-07-24 17:29
Re: not visualize post (10 replies, posted in PunBB 1.4 troubleshooting)
Try enable debug mode (see config.php)
31 2012-07-23 15:42
Re: How to add Search Box in Header (2 replies, posted in Discussions)
create file search_form.php with this code:
<div style="float:right">
<form id="search_form" class="frm-form" method="get" accept-charset="utf-8" action="<?php echo forum_link($forum_url['search']) ?>">
<div class="hidden">
<input type="hidden" name="action" value="search" />
</div>
<div class="sf-box text">
<input type="text" id="fld1" name="keywords" size="10" maxlength="100" />
<input type="submit" name="search" value="<?php echo $lang_common['Search'] ?>" />
</div>
</form>
</div>
place file into include/user/
open include/template/main.tpl (or styled tpl in style folder) and add after:
<!-- forum_skip -->
this:
<!-- forum_include "search_form.php" -->
profit!
32 2012-07-12 14:47
Re: Clone is forbiden (2 replies, posted in PunBB 1.4 troubleshooting)
try replace line 56 in include/loader.php
trigger_error('Clone is forbiden.', E_USER_ERROR);
to
//trigger_error('Clone is forbiden.', E_USER_ERROR);
33 2012-07-10 10:37
Re: Forum delete (3 replies, posted in PunBB 1.4 bug reports)
When the vehicle moves backward, then the odometer is not reduced mileage. This is a bug?
34 2012-07-05 17:33
Re: Cannot open the topic (14 replies, posted in PunBB 1.4 bug reports)
Enable debug mode in config.php:
define('FORUM_DEBUG', 1);
define('FORUM_SHOW_QUERIES', 1);
35 2012-07-04 03:12
Re: BBCode buttons and latest GitHub code (5 replies, posted in PunBB 1.3 bug reports)
Latest stable version 1.4.2
36 2012-07-02 02:44
Re: Default graphic BBC buttons (2 replies, posted in PunBB 1.4 troubleshooting)
Open extension manifest, find
$forum_db->add_field('users', 'pun_bbcode_use_buttons', 'TINYINT(1)', false, 0);
replace with:
$forum_db->add_field('users', 'pun_bbcode_use_buttons', 'TINYINT(1)', false, 1);
Reinstall extension
37 2012-06-29 04:18
Re: [Extension] Profile Additional Fields (15 replies, posted in PunBB 1.4 additions)
This release screenshots?
38 2012-06-21 09:31
Re: Sometime i got duplicate in posts (7 replies, posted in PunBB 1.4 bug reports)
installed punbb extensions?
39 2012-06-21 09:17
Re: Sometime i got duplicate in posts (7 replies, posted in PunBB 1.4 bug reports)
Any details of the environment, such as installed extensions, database version, php, etc?
40 2012-06-16 15:19
Re: Functions in the manifest file? (2 replies, posted in Discussions)
You can call a method in any hooks. However, first you need to identify the areas in which it is supposed to show the shoutbox. Then will it be possible to identify the specific hooks for your purposes.
41 2012-06-15 12:40
Re: Sticky for posts (4 replies, posted in General discussion)
nya_first_post: https://github.com/downloads/KANekT/Pun … _0.4.1.zip
dependancy: https://github.com/downloads/ashcs/punb … helper.zip
42 2012-06-14 09:50
Re: Sometime i got duplicate in posts (7 replies, posted in PunBB 1.4 bug reports)
punbb version?
44 2012-05-27 03:08
Re: Cannot open the topic (14 replies, posted in PunBB 1.4 bug reports)
Enable debug mode for more details (see config.php)
45 2012-05-22 01:26
Re: [Extension release] KT Mobile v1.6 (80 replies, posted in PunBB 1.4 additions)
46 2012-05-13 04:10
Re: registration error (2 replies, posted in PunBB 1.4 troubleshooting)
Enable debug mode: uncomment line in config.php
47 2012-05-11 02:45
Re: users posts can be verified or not (1 replies, posted in PunBB 1.4 additions)
pun_approval extension: http://punbb.ru/misc.php?action=pun_att … download=1
48 2012-05-08 15:29
Re: Nothing happens during instalation of an extension (4 replies, posted in PunBB 1.4 troubleshooting)
Karma is not compatible with the release 1.4.2.
At your own risk try to change the version in the manifest in the section maxtestedon
49 2012-05-07 17:57
Re: Nothing happens during instalation of an extension (4 replies, posted in PunBB 1.4 troubleshooting)
It seems that there is no Czech translation of the message. Try to enable English language in the profile and install the extension again.
50 2012-05-06 02:22
Re: Need to Remove I.P. Address (3 replies, posted in PunBB 1.4 troubleshooting)
IP address can only see the administrators and moderators.
Come on your forum as a user or as a guest and make sure of it.