Topic Title: Gallery icon in profile

Forum Index » phpBB3 / Gallery 2 Integration » Gallery icon in profile
Topic URL: http://www.nukedgallery.net/postt3795.html

AuthorMessage
Post Title: Gallery icon in profile
IngerK
Joined: Jan 19, 2006
Posts: 120
Location: Oslo, Norway
Posted: Sun Nov 25, 2007 4:30 pm
I have a problem with gallery-icon in the profile. It works OK after installing the integration mod, but if I go to ACP -> styles -> imagesets -> update, the icon disappears again, and I have to add it in phpmyadmin...

I think a line in imageset.cfg will solve this problem?

AuthorMessage
Post Title: Re: Gallery icon in profile
jettyrat
Joined: Nov 28, 2005
Posts: 1144

Posted: Mon Nov 26, 2007 12:30 pm
Were you able to make this work? I added these line to the imageset.cfg files, but the icons still disappear when refreshing the imageset in ACP...

Code: › #
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/imageset/imageset.cfg

#
#-----[ FIND ]------------------------------------------
#
img_icon_user_warn = icon_user_warn.gif*20*20

#
#-----[ AFTER, ADD ]------------------------------------------
#
img_icon_user_gallery = icon_user_gallery.gif*20*25

#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/imageset/en/imageset.cfg

#
#-----[ FIND ]------------------------------------------
#
img_button_topic_reply = button_topic_reply.gif*25*96

#
#-----[ AFTER, ADD ]------------------------------------------
#
img_button_gallery = button_gallery.gif*18*59

AuthorMessage
Post Title: Re: Gallery icon in profile
IngerK
Joined: Jan 19, 2006
Posts: 120
Location: Oslo, Norway
Posted: Mon Nov 26, 2007 2:10 pm
You are right, I didn't try...
But now I have tried again - I had to edit includes/acp/acp_styles.php as well, and it works now.

AuthorMessage
Post Title: Re: Gallery icon in profile
jettyrat
Joined: Nov 28, 2005
Posts: 1144

Posted: Mon Nov 26, 2007 4:15 pm
Cool - Thanks for working on that IngerK! I'll add to the growing list of fixes for 0.0.5

Here's the changes for anyone else that wants it. This makes the acp->styles->imageset->edit and refresh options work properly...

Core integration mods:
Code: › #
#-----[ OPEN ]------------------------------------------
#
includes/acp/acp_styles.php

#
#-----[ IN-LINE FIND ]------------------------------------------
#
'button_topic_reply',

#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
 'button_gallery',
 
#
#-----[ IN-LINE FIND ]------------------------------------------
#
'icon_foe',

#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
 'icon_user_gallery',


Language mods:
Code: › #
#-----[ OPEN ]------------------------------------------
#
language/en/acp/styles.php

#
#-----[ FIND ]------------------------------------------
#
   'IMG_ICON_USER_WARN'      => 'Warn user',

#
#-----[ AFTER, ADD ]------------------------------------------
#
   'IMG_ICON_USER_GALLERY'      => 'Gallery icon',

#
#-----[ FIND ]------------------------------------------
#
   'IMG_BUTTON_TOPIC_REPLY'   => 'Reply topic',

#
#-----[ AFTER, ADD ]------------------------------------------
#
   'IMG_BUTTON_GALLERY'      => 'Gallery button',


Prosilver mods:
Code: › #
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/imageset/imageset.cfg

#
#-----[ FIND ]------------------------------------------
#
img_icon_user_warn = icon_user_warn.gif*20*20

#
#-----[ AFTER, ADD ]------------------------------------------
#
img_icon_user_gallery = icon_user_gallery.gif*20*25

#
#-----[ OPEN ]------------------------------------------
#
styles/prosilver/imageset/en/imageset.cfg

#
#-----[ FIND ]------------------------------------------
#
img_button_topic_reply = button_topic_reply.gif*25*96

#
#-----[ AFTER, ADD ]------------------------------------------
#
img_button_gallery = button_gallery.gif*18*59


Subsilver2 mods:
Code: › #
#-----[ OPEN ]------------------------------------------
#
styles/subsilver2/imageset/imageset.cfg

#
#-----[ FIND ]------------------------------------------
#
img_icon_topic_unapproved = icon_topic_unapproved.gif*18*19

#
#-----[ AFTER, ADD ]------------------------------------------
#
img_icon_user_gallery = button_gallery.gif*18*59

#
#-----[ OPEN ]------------------------------------------
#
styles/subsilver2/imageset/en/imageset.cfg

#
#-----[ FIND ]------------------------------------------
#
img_button_topic_reply = button_topic_reply.gif

#
#-----[ AFTER, ADD ]------------------------------------------
#
img_button_gallery = button_gallery.gif

AuthorMessage
Post Title: Re: Gallery icon in profile
mart29
Joined: Dec 15, 2007
Posts: 7

Posted: Thu Dec 20, 2007 11:14 pm
hi, thanks for the reply, ive done those but it doesnt work, ive never had the pictures for the gallery come up once.
Can you tell me how you added the pictures through phpmyadmin?

AuthorMessage
Post Title: Re: Gallery icon in profile
IngerK
Joined: Jan 19, 2006
Posts: 120
Location: Oslo, Norway
Posted: Fri Dec 21, 2007 3:33 am
mart29 wrote: › hi, thanks for the reply, ive done those but it doesnt work, ive never had the pictures for the gallery come up once.
Can you tell me how you added the pictures through phpmyadmin?


This is what I have in my table phpBB_styles_imageset_data:

icon_user_gallery icon_user_gallery.gif 20 25 1
icon_user_gallery icon_user_gallery.gif 20 25 2

(the last is for each style, I use 2)

AuthorMessage
Post Title: Re: Gallery icon in profile
jettyrat
Joined: Nov 28, 2005
Posts: 1144

Posted: Fri Dec 21, 2007 11:02 am
Mart - the sql mods in prosilver_mods.txt and subsilver2_mods.txt should add this data to the table. You did execute the style sql code, right?

If I remember correctly, your forum was not showing the email or pm icons for users either, but it was showing the www icon for one user, which leads me to think something is messed up in the css somewhere because the page source showed the appropriate html code for the icons.

AuthorMessage
Post Title: Re: Gallery icon in profile
jettyrat
Joined: Nov 28, 2005
Posts: 1144

Posted: Fri Dec 21, 2007 1:04 pm
Mart- I'm looking at your site with firebug and it appears the css for the gallery icons is either not there or is broken somehow.

You should double check the mods in these 2 files -
styles/prosilver/theme/buttons.css
styles/prosilver/theme/colours.css

Edit - nevermind. I grabbed to css files from your site and they appear to be fine as far as the mods go. Also, the image files are there as well if I link directly to them. Firebug shows the css missing from the page, but I don't see where the problem is!

Are you sure the sql has been run?

AuthorMessage
Post Title: Re: Gallery icon in profile
mart29
Joined: Dec 15, 2007
Posts: 7

Posted: Sat Dec 22, 2007 5:09 pm
hi, thanks again, yeah i ran the sql for sure, im going to reinstall from scratch again, i really dont know whats doing it and ive got to the point where im spending so much time checking i may as well do it all from scratch and see if that solves it, ill report back once ive finished and see if that does it, somehow i think its something to do with the database, but the sql code has definately been run, i dont know why i suspect the database, probably because im sure the coding is correct. thanks anyway, i will leave a comment in a day or two when its done to let you know either way.

AuthorMessage
Post Title: Re: Gallery icon in profile
anmolgill
Joined: Jun 27, 2008
Posts: 5

Posted: Thu Jul 03, 2008 3:32 am
how to make changes in vista theme of phbb ?

AuthorMessage
Post Title: Re: Gallery icon in profile
jettyrat
Joined: Nov 28, 2005
Posts: 1144

Posted: Thu Jul 03, 2008 9:40 am
http://www.nukedgallery.net/postt4052.html [nukedgallery.net]

AuthorMessage
Post Title: Re: Gallery icon in profile
dagtm
Joined: Oct 18, 2008
Posts: 7

Posted: Mon Oct 20, 2008 5:35 am
now, I have same problem, css is there, mysql is ok but there are no icons

AuthorMessage
Post Title: Re: Gallery icon in profile
IngerK
Joined: Jan 19, 2006
Posts: 120
Location: Oslo, Norway
Posted: Mon Oct 20, 2008 7:52 am
This problem was fixed long time ago.
You don't say much here to help us help you...

Which integration version?
Have you done integration for all languages in all styles? (don't forget more database changes for other languages/other styles)
Have you refreshed templates, imagesets and themes?
Have you cleared cache files?
have you cleared browser cookies?

AuthorMessage
Post Title: Re: Gallery icon in profile
dagtm
Joined: Oct 18, 2008
Posts: 7

Posted: Tue Oct 21, 2008 2:17 am
I have done everything as mart29, checked everything, done integration, have refreshed templates, cleared cache files, clearet browser cookies, and checked on multiple computers and web browsers

AuthorMessage
Post Title: Re: Gallery icon in profile
IngerK
Joined: Jan 19, 2006
Posts: 120
Location: Oslo, Norway
Posted: Tue Oct 21, 2008 5:41 am
This was started a year ago and is a discussion about a bug/problem in the beta integration version for phpBB3. The problem we diskuss here is solved in new versions. Wink

New problem - new topic. And please - don't post your question in two topics. Smile

AuthorMessage
Post Title: Re: Gallery icon in profile
brettlee
Joined: Jul 15, 2010
Posts: 23

Posted: Thu Aug 19, 2010 4:27 am
Forums are powerful platforms for user generated contents and there by increases the traffic to websites. So many bloggers have started their own forums. We have several tools available topass4sure VCP-410 [pass4sure.org] integrate forums with wordpress blogs. But sometimes it is very hard to tweak the forum templates with respect to the blogs. I feel Wp-united is a powerful tool which integrates phpBB3 and WordPress 2.3
pass4sure 350-001 [pass4sure.org].x. The configurations are simple and easy to follow.All installation steps are explained in the install.xml file in pass4sure 640-802 [pass4sure.org] the wp- united package. Initially you have to upload the wp-united files to corresponding location as specified. After that you have to tweak some phpBB forum files. I provide you phpbb3 files that has been tweaked for wp-united integration, hence you ca pass4sure SY0-201 [pass4sure.org] directly upload them to the specified location. It will make you one step easier . Then logon to forum control panel after running wpu-install.php in the root folder of the wp-united package(Upload it to the root folder and call the url to this file) and there will be a wp-united tab which will lead you to the configuration process.

AuthorMessage
Post Title: Re: Gallery icon in profile
brettlee
Joined: Jul 15, 2010
Posts: 23

Posted: Wed Aug 25, 2010 2:18 am
Since the Hiroshima and Nagasaki bombings, nuclear weapons have been detonated on 642-901 [actualquestions.com]over two thousand occasions for testing purposes and demonstration purposes. A few states have possessed such weapons or are suspected of seeking them. The only countries known to have detonated nuclear weapons—and tha640-822 [actualquestions.com] acknowledge possessing such weapons—are220-701 [actualquestions.com] (chronologically) the United States, the Soviet Union (succeeded as a nuclear power by Russia), the United Kingdom, France, the People's Republic of China, India, Pakista70-642 [actualquestions.com]
n, and North Korea. Israel is also widely believed to possess nuclear weapons, though it does not acknowledge having them.[2

All times are GMT - 5 Hours
Powered by PHPNuke and phpBB2 © 2006 phpBB Group