[ABD] My Page - Personal web page for your members

Any abandoned MODs will be moved to this forum.

WARNING: MODs in this forum are not currently being supported or maintained by the original MOD author. Proceed at your own risk.
Forum rules
IMPORTANT: MOD Development Forum rules

WARNING: MODs in this forum are not currently being supported nor updated by the original MOD author. Proceed at your own risk.
The Future
Registered User
Posts: 5
Joined: Sun Dec 27, 2009 5:27 am
Contact:

Re: [BETA] My Page - Personal web page for your members

Post by The Future »

Nice MOD but the comments don't show up for it.
User avatar
eunaumtenhoid
Registered User
Posts: 1007
Joined: Wed Jun 03, 2009 12:46 am
Location: ????

Re: [BETA] My Page - Personal web page for your members

Post by eunaumtenhoid »

have permissoes for group?
My translations of the extensions for Brazilian Portuguese
https://github.com/phpBBTraducoes
ELCaD
Registered User
Posts: 35
Joined: Fri Jan 08, 2010 9:10 pm
Contact:

Re: [BETA] My Page - Personal web page for your members

Post by ELCaD »

Yes, this does have group permissions, so you can enable or disable for certain groups, or even set different limits, use of html, etc.

Great mod by the way. Just got it installed and loving it. Thanks!
--Phoenix--
Registered User
Posts: 9
Joined: Tue Dec 15, 2009 6:39 am

Re: [BETA] My Page - Personal web page for your members

Post by --Phoenix-- »

news?
where is the correct link for download this mod?
sleevedbiker
Registered User
Posts: 789
Joined: Mon Oct 12, 2009 4:33 pm

Re: [BETA] My Page - Personal web page for your members

Post by sleevedbiker »

installed and now getting this error on every topic i try to view

General Error
SQL ERROR [ mysql4 ]

Table 'son0928406324873.GALLERY_USERS_TABLE' doesn't exist [1146]

SQL

SELECT u.*, z.friend, z.foe, p.*, gu.personal_album_id, gu.user_images FROM (phpbb_users u, phpbb_posts p) LEFT JOIN phpbb_zebra z ON (z.user_id = 2 AND z.zebra_id = p.poster_id) LEFT JOIN GALLERY_USERS_TABLE gu ON (gu.user_id = p.poster_id) WHERE p.post_id IN (24252, 24254, 24276, 24320) AND u.user_id = p.poster_id

BACKTRACE

FILE: includes/db/mysql.php
LINE: 174
CALL: dbal->sql_error()

FILE: viewtopic.php
LINE: 993
CALL: dbal_mysql->sql_query()



please help asap..... if anything how do i remove it from my sql
You ride with an outlaw, You die with an outlaw
User avatar
woipi90
Registered User
Posts: 908
Joined: Mon Feb 16, 2009 5:32 pm
Location: Austria

Re: [BETA] My Page - Personal web page for your members

Post by woipi90 »

sleevedbiker wrote:installed and now getting this error on every topic i try to view

General Error
SQL ERROR [ mysql4 ]

Table 'son0928406324873.GALLERY_USERS_TABLE' doesn't exist [1146]

SQL

SELECT u.*, z.friend, z.foe, p.*, gu.personal_album_id, gu.user_images FROM (phpbb_users u, phpbb_posts p) LEFT JOIN phpbb_zebra z ON (z.user_id = 2 AND z.zebra_id = p.poster_id) LEFT JOIN GALLERY_USERS_TABLE gu ON (gu.user_id = p.poster_id) WHERE p.post_id IN (24252, 24254, 24276, 24320) AND u.user_id = p.poster_id

BACKTRACE

FILE: includes/db/mysql.php
LINE: 174
CALL: dbal->sql_error()

FILE: viewtopic.php
LINE: 993
CALL: dbal_mysql->sql_query()



please help asap..... if anything how do i remove it from my sql
hm?! looks like you didn't define the GALLERY_USERS_TABLE in the includes/constants.php
but it looks like the bug is caused by your phpbb gallery installation and this one is my page?

look if you can find this:

Code: Select all

// phpBB Gallery integration
define('GALLERY_ROOT_PATH', 'gallery/');

define('GALLERY_ALBUMS_TABLE',			$table_prefix . 'gallery_albums');
define('GALLERY_ATRACK_TABLE',			$table_prefix . 'gallery_albums_track');
define('GALLERY_COMMENTS_TABLE',		$table_prefix . 'gallery_comments');
define('GALLERY_CONFIG_TABLE',			$table_prefix . 'gallery_config');
define('GALLERY_CONTESTS_TABLE',		$table_prefix . 'gallery_contests');
define('GALLERY_FAVORITES_TABLE',		$table_prefix . 'gallery_favorites');
define('GALLERY_IMAGES_TABLE',			$table_prefix . 'gallery_images');
define('GALLERY_MODSCACHE_TABLE',		$table_prefix . 'gallery_modscache');
define('GALLERY_PERMISSIONS_TABLE',		$table_prefix . 'gallery_permissions');
define('GALLERY_RATES_TABLE',			$table_prefix . 'gallery_rates');
define('GALLERY_REPORTS_TABLE',			$table_prefix . 'gallery_reports');
define('GALLERY_ROLES_TABLE',			$table_prefix . 'gallery_roles');
define('GALLERY_USERS_TABLE',			$table_prefix . 'gallery_users');
define('GALLERY_WATCH_TABLE',			$table_prefix . 'gallery_watch');
in particular this line:

Code: Select all

define('GALLERY_USERS_TABLE',			$table_prefix . 'gallery_users');
in your includes/constants.php


grz woipi
My mods: Ultimate Board Clubs
Support: only for the UBCS!
-----
function be_friends($uid, $u){return ($u == $user->['user_id']) ? false : true;}
$this->be_friends($uid, $user->['user_id']) ? $allow_pm : echo "You failed again";
bloodyred88
Registered User
Posts: 18
Joined: Sat Mar 20, 2010 3:56 pm

Re: [BETA] My Page - Personal web page for your members

Post by bloodyred88 »

Before you read anything on this post, I take no responsibility if this messes up your board. Use at your own Risk! I don't offer support so don't ask it

What Version was my board?
3.0.7 PL1 fresh install

I only used prosilver

Here is how I did it

I changed the install file for 0.2.3 and Installed it using AutoMOD 1.0.0 RC3
You can download: http://www.mediafire.com/file/fwnzzg2mn ... update.zip
Use at your own Risk!

you'll have to manually upload the root files yourself and once done run it in AutoMOD.
You'll get a few folder errors but I ignored them and forced install
Next CHMOD images/mypage_uploads to 777

Now you'll have to add the mysql data yourself using
Josh18657 wrote:and here is the mod sql for anyone interested

Code: Select all

CREATE TABLE `phpbb_mypage` (
  `mypage_id` int(10) NOT NULL auto_increment,
  `owner_id` int(10) NOT NULL,
  `allow_comments` int(1) NOT NULL default '0',
  `allow_ratings` int(1) NOT NULL default '0',
  `parse_bbcode` int(1) NOT NULL default '1',
  `parse_html` int(1) NOT NULL default '0',
  `parse_smiles` int(1) NOT NULL default '0',
  `parse_url` int(1) NOT NULL default '1',
  `bg_color` varchar(50) NOT NULL default 'White',
  `bg_img` varchar(255) NOT NULL default 'none',
  `bg_img_url` varchar(255) NOT NULL default 'none',
  `bg_style` varchar(20) NOT NULL default 'repeat',
  `bg_style_fix` varchar(10) NOT NULL default 'scroll',
  `fnt_size` varchar(20) NOT NULL default 'Medium',
  `fnt_color` varchar(20) NOT NULL default 'Black',
  `mypage_title` varchar(255) NOT NULL,
  `created` varchar(255) NOT NULL,
  `content` text NOT NULL,
  `bbcode_uid` varchar(255) NOT NULL,
  `bbcode_bitfield` varchar(255) NOT NULL,
  `bbcode_options` varchar(255) NOT NULL,
  `views` int(10) NOT NULL default '0',
  `mypage_order` int(10) NOT NULL default '0',
  PRIMARY KEY  (`mypage_id`)
) TYPE=MyISAM ;


CREATE TABLE `phpbb_mypage_comments` (
  `comment_id` int(10) NOT NULL auto_increment,
  `user_id` int(10) NOT NULL default '0',
  `comment_username` varchar(255) NOT NULL default '0',
  `mypage_id` int(10) NOT NULL default '0',
  `comment` text NOT NULL,
  `comment_time` int(11) NOT NULL default '0',
  `page_owner_id` int(10) NOT NULL default '0',
  `comment_uid` varchar(255) NOT NULL default '0',
  `comment_bitfield` varchar(255) NOT NULL default '0',
  `comment_options` varchar(255) NOT NULL default '0',
  PRIMARY KEY  (`comment_id`)
) TYPE=MyISAM ;


CREATE TABLE `phpbb_mypage_ratings` (
  `rating_id` int(10) NOT NULL auto_increment,
  `user_id` int(10) NOT NULL default '0',
  `mypage_id` int(10) NOT NULL default '0',
  `rating` int(10) NOT NULL default '0',
  `page_owner_id` int(10) NOT NULL default '0',
  PRIMARY KEY  (`rating_id`)
) TYPE=MyISAM ;


CREATE TABLE `phpbb_mypage_uploads` (
  `upload_id` int(10) NOT NULL auto_increment,
  `owner_id` int(10) NOT NULL default '0',
  `upload_title` varchar(255) NOT NULL default '0',
  `save_name` varchar(255) NOT NULL default '0',
  `views` int(10) NOT NULL default '0',
  `extension` varchar(5) NOT NULL default '0',
  `size_string` varchar(255) NOT NULL default '0',
  `width` int(5) NOT NULL default '0',
  `height` int(5) NOT NULL default '0',
  `upload_time` int(11) NOT NULL default '0',
  `mime` varchar(100) NOT NULL default '0',
  PRIMARY KEY  (`upload_id`)
) TYPE=MyISAM ;

INSERT INTO `phpbb_config` (`config_name`, `config_value`, `is_dynamic`) VALUES 
('mypage_rate_3', '3.gif', 0),
('mypage_rate_2', '2.gif', 0),
('mypage_rate_1', '1.gif', 0),
('mypage_rate_0', '0.gif', 0),
('mypage_default_content', 'page not yet available', 0),
('mypage_use_board_header', '1', 0),
('mypage_max_uploads_size', '100000', 0),
('mypage_custom_footer', '<center><a href="http://www.jtsenterprises.biz"><img src="http://www.jtsenterprises.biz/banners/remote_banner_1.png" /></a></center>', 0),
('mypage_rate_4', '4.gif', 0),
('mypage_rate_5', '5.gif', 0),
('mypage_rate_none', 'none.gif', 0),
('mypage_allowed_1', '1', 0),
('mypage_allowed_2', '5', 0),
('mypage_allowed_3', '10', 0),
('mypage_allowed_uploads_1', '2', 0),
('mypage_allowed_uploads_2', '10', 0),
('mypage_allowed_uploads_3', '15', 0);

INSERT INTO `phpbb_acl_options` (`auth_option`, `is_global`, `is_local`, `founder_only`) VALUES (1, 'f_', 0, 1, 0),
('u_mp_comments', 1, 0, 0),
('u_mp_vote', 1, 0, 0),
('u_mp_ratings', 1, 0, 0),
('u_mp_own_ratings', 1, 0, 0),
('u_mp_own_comments', 1, 0, 0),
('u_mp_use_html', 1, 0, 0),
('u_mp_uploads_1', 1, 0, 0),
(u_mp_uploads_2', 1, 0, 0),
('u_mp_uploads_3', 1, 0, 0),
('u_mp_allowed_1', 1, 0, 0),
('u_mp_allowed_2', 1, 0, 0),
('u_mp_allowed_3', 1, 0, 0),
('m_mp_edit', 1, 0, 0),
('a_mp_change', 1, 0, 0);

-- add modules manually because these aren't correct for other phpbb3 installs
INSERT INTO `phpbb_modules` (`module_id`, `module_enabled`, `module_display`, `module_basename`, `module_class`, `parent_id`, `left_id`, `right_id`, `module_langname`, `module_mode`, `module_auth`) VALUES 
(194, 1, 1, 'mypage', 'ucp', 0, 55, 64, 'UCP_MYPAGE', 'overview', 'acl_u_mp_allowed_1 || acl_u_mp_allowed_2 || acl_u_mp_allowed_3'),
(195, 1, 1, 'mypage', 'ucp', 194, 56, 57, 'UCP_MP_MAIN', 'overview', 'acl_u_mp_allowed_1 || acl_u_mp_allowed_2 || acl_u_mp_allowed_3'),
(196, 1, 1, 'mypage', 'ucp', 194, 58, 59, 'UCP_MP_UPLOADS', 'uploads', 'acl_u_mp_uploads_1 || acl_u_mp_uploads_2 || acl_u_mp_uploads_3'),
(197, 1, 1, 'mypage', 'ucp', 194, 60, 61, 'UCP_MP_ADD', 'add', 'acl_u_mp_allowed_1 || acl_u_mp_allowed_2 || acl_u_mp_allowed_3'),
(198, 1, 1, 'mypage', 'ucp', 194, 62, 63, 'UCP_MP_EDIT', 'edit', 'acl_u_mp_allowed_1 || acl_u_mp_allowed_2 || acl_u_mp_allowed_3'),
(199, 1, 1, '', 'acp', 9, 102, 109, 'ACP_MP_MYPAGE', '', 'acl_a_mp_change'),
(200, 1, 1, 'mypage', 'acp', 199, 103, 104, 'ACP_MP_MAIN', 'overview', 'acl_a_mp_change'),
(201, 1, 1, 'mypage', 'acp', 199, 105, 106, 'ACP_MP_LIMITS', 'limits', 'acl_a_mp_change'),
(202, 1, 1, 'mypage', 'acp', 199, 107, 108, 'ACP_MP_STYLE', 'style', 'acl_a_mp_change');
Thanks Josh18657

Now Open in your web browser and follow the instructions in /mypage_install/index.php
Everything should pass

Afterward delete mypage_install folder

Remember you have to change permissions before using it
sleevedbiker
Registered User
Posts: 789
Joined: Mon Oct 12, 2009 4:33 pm

Re: [BETA] My Page - Personal web page for your members

Post by sleevedbiker »

accidently deleted the sql from myphpadmin for this mod, now when i try to open the install file i get this error..

General Error
SQL ERROR [ mysql4 ]

Table 'son0928406324873.phpbb_mypage' doesn't exist [1146]

SQL

SELECT * FROM phpbb_mypage WHERE owner_id = '2349' && mypage_order <> '0' ORDER BY mypage_order ASC

BACKTRACE

FILE: includes/db/mysql.php
LINE: 174
CALL: dbal->sql_error()

FILE: memberlist.php
LINE: 894
CALL: dbal_mysql->sql_query()
You ride with an outlaw, You die with an outlaw
Anyasha
Registered User
Posts: 704
Joined: Mon Aug 07, 2006 4:02 am
Name: Anyasha

Re: [BETA] My Page - Personal web page for your members

Post by Anyasha »

Try running the SQL query in the post above yours for the phpbb_mypage table (it's the first query).
Kiss me, I'm Polish!
maxrpg
Registered User
Posts: 95
Joined: Thu Jul 30, 2009 12:33 am

Re: [BETA] My Page - Personal web page for your members

Post by maxrpg »

Hello,

This mod works perfectly but I cant find an option for admins/moderators to delete/edit members pages, is there an option to do this somewhere that ive missed?.

I realy want to use this mod on my live site but without moderation options my members could post anything especially content that breaks the rules and I would have no way to delete/edit their pages. Even after banning them the link to their pages would still remain in any posts they made and in their member profile so the only way I can see to completely remove them is to delete their account and all their posts which is something I dont realy want to do espeically if they have made 100s of posts.

Is there an option for admins to remove/edit individual pages? or is this feature planned for the future.

Thank you.
My go to phpBB based site and hangout is Codenstuff
230116885
Registered User
Posts: 9
Joined: Tue Jun 29, 2010 12:30 pm

Re: [BETA] My Page - Personal web page for your members

Post by 230116885 »

2 Josh18657 and all:

I downloaded the current version and:

1. Comments appear here as follows: ??????????????????????

2. How do I make smilies?

3. How to make a feature set_background (), since it does not work?

P.s.:Sorry for my English. I can make the correct translation into Russian. Since this translation is not correct. Thank you.
Anyasha
Registered User
Posts: 704
Joined: Mon Aug 07, 2006 4:02 am
Name: Anyasha

Re: [BETA] My Page - Personal web page for your members

Post by Anyasha »

I have souped up this baby like crazy (avatar and colored usernames in comments, smilies and bbcode above comment text box, "last updated" feature, more colors, ability to select from premade templates, etc) and fixed a lot of errors. Am I allowed to make a zip and post it?
Kiss me, I'm Polish!
230116885
Registered User
Posts: 9
Joined: Tue Jun 29, 2010 12:30 pm

Re: [BETA] My Page - Personal web page for your members

Post by 230116885 »

Anyasha
Upload somewhere else and post a link, please. I would also like to see your database to configure html and not only. Make export, please.
Lastpost
Registered User
Posts: 74
Joined: Thu Feb 04, 2010 7:09 am

Re: [BETA] My Page - Personal web page for your members

Post by Lastpost »

Anyasha wrote:I have souped up this baby like crazy (avatar and colored usernames in comments, smilies and bbcode above comment text box, "last updated" feature, more colors, ability to select from premade templates, etc) and fixed a lot of errors. Am I allowed to make a zip and post it?
Please do that. :)
230116885
Registered User
Posts: 9
Joined: Tue Jun 29, 2010 12:30 pm

Re: [BETA] My Page - Personal web page for your members

Post by 230116885 »

Lastpost wrote:
Anyasha wrote:I have souped up this baby like crazy (avatar and colored usernames in comments, smilies and bbcode above comment text box, "last updated" feature, more colors, ability to select from premade templates, etc) and fixed a lot of errors. Am I allowed to make a zip and post it?
Please do that. :)
Locked

Return to “[3.0.x] Abandoned MODs”