Phoenix 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Wed Dec 09, 2009 12:57 am 
																
			 
		 
		The primary intent is enhanced useability for new and existing users - currently in use on this site.
uses jQuery validation to enhance registration, all browsers plus IE6 now requires double email entry to minimize error initial registration requires username and email then registration has a second step where js is disabled, DF error checking has been changed to minimize data loss your account has a css tabbed menu, no js tab for public view items - summary, profile, avatar. tab for configuration - prefs, private, password, username/email, homepage, comments. tab for user activity - summary, blogs, gallery, posts, topics, watchlists. tab for user groups tabbed menu extended to private messages private messages language integrated with YA password recovery modified to eliminate confusing code entry provision for forgotten username, similar to lost password admin option to allow viewing of user profiles on a groups basis admin option to allow username change, requires email re-activation user email change now requires email re-activation all fully templated. theme based styling with account.css covering validation and jQuery curve uses jQuery curve to round container corners, all browsers for enhanced useability, the verdana font is provided for security codes core database tables untouched but reactivation table and couple of main config flags added  Available Here  - note the installation notes!
Bugs and Features will only be actioned when reported through  Bugger 
			Server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS): 		
		Last edited by Phoenix on Mon Jan 25, 2010 2:43 am; edited 1 time in total 
	 
 
	
		
			Dizfunkshunal 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Wed Dec 09, 2009 9:17 am 
																
			 
		 
		theme/default/template/account/userinfo.html
line 168   after the <br /> tag =   ';
Very Nice upgrade 
			
				Attachment:
				shot0102.png			 
			
			
				Description 
				 
						
				Filesize 
				3.39 KiB 
			 
			
				Viewed 
				96 Time(s) 
			 
			
				You are not allowed to view/download this attachment 
			 			 
		 				
			Please enter your server specs in your user profile ! 😢 		
			 
 
	
		
			Gamekeeper 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Wed Dec 09, 2009 11:53 am 
																
			 
		 
		I get the following database error on my account/public pageCMS Warning line 75: On /index.php?name=Your_Account While executing query "SELECT p.filepath, p.filename, p.owner_id, p.aid, p.title, pid FROM pictures p INNER JOIN albums a ON (p.aid = a.aid AND visibility IN (0,2,2,10002)) WHERE approved=1 AND p.owner_id='2' GROUP BY pid ORDER BY pid DESC LIMIT 10" the following error occured: Table 'missi19_asylum.pictures' doesn't exist In: /home/missi19/public_html/modules/Your_Account/blocks/yourcpg.php on line: 23
						
			Please enter your server specs in your user profile ! 😢 		
			 
 
	
		
			Phoenix 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Wed Dec 09, 2009 1:59 pm 
																
			 
		 
		@Diz - thanks, fixed.
						
			Server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS): 		
			 
 
	
		
			Gamekeeper 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Wed Dec 09, 2009 2:12 pm 
																
			 
		 
		No other gallery blocks in YA, I get the same error on two websites, one of which is a fresh install
						
			Please enter your server specs in your user profile ! 😢 		
			 
 
	
		
			Phoenix 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Wed Dec 09, 2009 2:19 pm 
																
			 
		 
		hmm, bugger, I'll just have to drop it back to the standard $prefix_cpg_ while I work out why it doesn't work for you.<?php
if (!defined('CPG_NUKE')) { exit; }
global $prefix, $db, $CONFIG, $cpg_dir, $cpg_prefix;
$cpg_dir = 'coppermine';
if (!is_active($cpg_dir)) {
    $content = 'ERROR';
    return trigger_error($cpg_dir.' module is inactive', E_USER_WARNING);
}
$cpg_block = true;
require_once('modules/'.$cpg_dir.'/include/load.inc');
$cpg_block = false;
$length = $CONFIG['thumbcols']; # number of thumbs
$userid = getusrdata($username, 'user_id');
$content = $thumb_title = '';
$result = $db->sql_query("SELECT p.filepath, p.filename, p.owner_id, p.aid, p.title, pid 
	FROM {$prefix}_cpg_pictures p 
	INNER JOIN {$prefix}_cpg_albums a ON (p.aid = a.aid AND ".VIS_GROUPS.") 
	WHERE approved=1 AND p.owner_id='$userid[user_id]' 
	GROUP BY pid 
	ORDER BY pid DESC 
	LIMIT 10");
$num_pics = $db->sql_numrows($result);
echo '<br />';
OpenTable();
echo '<div><b>'.$username.'\'s Gallery'.($num_pics > 0 ? ' - last '.$num_pics : '').':</b></div>';
$i = 0;
if ($num_pics > 0) {
	echo '<table width="100%" border="0" cellpadding="3" cellspacing="0">';
	while ($row = $db->sql_fetchrow($result)) {
		if ($i == 0) {
			echo '<tr>';
		}
	    if ($CONFIG['seo_alts'] == 0) {
	        $thumb_title = $row['filename'];
	    } else {
	        if ($row['title'] != '') {
	            $thumb_title = $row['title'];
	        } else {
	            $thumb_title = substr($row['filename'], 0, -4);
	        }
	    }
        echo '<td align="center" valign="baseline"><a href="'.getlink($cpg_dir.'&file=displayimage&album='.$row['aid'].'&pid='.$row['pid']).'"><img src="'.get_pic_url($row, 'thumb').'" alt="'.$thumb_title.'" title="'.$thumb_title.'" /><br />'.truncate_stringblocks($thumb_title).'</a></td>';
		$i++;
		if ($i == $length || $i == $num_pics) {
			echo '</tr>';
			$i = 0;
		}
	}
	echo '</table>';
} else {
	echo '<div><br />No pictures to display</div>';
}
CloseTable();
						
			Server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS): 		
			 
 
	
		
			Dylert 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Wed Dec 09, 2009 2:39 pm 
																
			 
		 
		Thanks a lot for this nice release!
						
			Please enter your server specs in your user profile ! 😢 		
			 
 
	
		
			Phoenix 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Wed Dec 09, 2009 2:55 pm 
																
			 
		 
		@Dylert - Bugger is the right place - thank you.
Your problem is now a separate forum topic.
nukebiz.com/Forums/viewtopic/t=633/ • Donations & Audit for DragonflyCMS  
		
			Server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS): 		
			 
 
	
		
			gallowglas 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Thu Dec 10, 2009 6:24 am 
																
			 
		 
		@Phoenix
						
			Please enter your server specs in your user profile ! 😢 		
			 
 
	
		
			Phoenix 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Thu Dec 10, 2009 6:30 am 
																
			 
		 
		That is correct - one of the added features is that admin can choose who sees user profiles.
						
			Server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS): 		
			 
 
	
		
			Gamekeeper 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Thu Dec 10, 2009 6:45 am 
																
			 
		 
		Substitute code works well, thanks.
						
			Please enter your server specs in your user profile ! 😢 		
			 
 
	
		
			Phoenix 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Thu Dec 10, 2009 6:56 am 
																
			 
		 
		I probably need to provide a check for forum watch since CPG-BB doesn't have it, so that will be an issue I need to fix shortly.
						
			Server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS): 		
			 
 
	
		
			Gamekeeper 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Fri Dec 11, 2009 9:12 am 
																
			 
		 
		I am now unable to change themes through configuration/preferences, when I select a new theme and save changes the page will refresh giving the operation complete! message but the theme does not change.includes/coppermine/init.inc
    * Warning line 75: array_merge() [function.array-merge]: Argument #2 is not an array
						
			Please enter your server specs in your user profile ! 😢 		
			 
 
	
		
			Phoenix 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Fri Dec 11, 2009 1:47 pm 
																
			 
		 
		Small omission in modules/Your_Account/edit_profile.php - fixed in the download and the attached file.
						
			Server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS): 		
		Last edited by Phoenix on Tue Dec 15, 2009 3:51 pm; edited 1 time in total 
	 
 
	
		
			Phoenix 
			
				Offline 				 
		 
		
			0 👍 
			/
			0 👎 
		
	 
	
		
			Tue Dec 15, 2009 3:50 pm 
																
			 
		 
		Download updated for a couple of other small bugs - user prefix issue in cpgquota block plus admin add a user.
						
			Server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS):