Log in Register FAQ Memberlist Search Welcome to RCF - WHF Forum Index
alt : test.swf
Welcome to RCF - WHF
4fx3.gif 
Contact the Webmasters of RCFContact   Invite a friend to Join usRecommend   Chat in IRCChat   EZ Template Change OptionEZStyle   Listen to Internet Radio while you browse...iRadio   See your private message.Login for PMs   Important LinksLinks
Member Website LinksWeb Links   Play/View our GamesGames   Register.Register
calendar_open_closeCalendar 
phpBB 2.0.19 Released today!
Post new topic   Reply to topic View previous topic :: View next topic
Goto page: Previous  1, 2, 3, 4, 5, 6  Next
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support Add To Bookmarks
Re: phpBB 2.0.19 Released today!
PostPosted: 01/05/2006 1:45 PM Reply with quote
Citation
Jaddon
Citation
Posts 3160
Word Cnt. 157,169
BDay Mar 11
Sign Pisces
Sex Sex:Female
Joined: Oct 12, 2005
Local time: 12:59 PM
usaCa.gif
Nightrider wrote:
Jaddon wrote:
I dont me the link on the index page.  I mean while in the pm box the icon that appears near a new pm.

It is trying to display this file:  
http://jaddon.com/forum/templates/jaddon/images/newpm.png
It doesn't exist.  I looked through your backups and it appears to have never existed.  Based on the name, it looks like the graphics might be custom made.  If you created this style, you need to make a New PM icon with this name or change the name in your jaddon.cfg file.  This is the variable that you would need to modify:
Code:
$images['pm_unreadmsg'] = "$current_template_images/newpm.png";

headbang


Thats easy to fix then, how silly of me.  Smile  Thanks


Quote:
Of course you could make it a smaller percentage too.  Using 100% will make the page borders fit to the window rather than requiring the window to fit the page.  Experiment a bit to see how it works.
..

Ok that sounds easy to.  Changing it to 100% this will default to the browser window size?  I don't like it when we have to scroll to the width to see the whole page.  Do I change the width for everything even the forums widths?  Thanks Smile
Back to Top
View user's profile Find all posts by Jaddon Send private message   Visit poster's website Phoogle Map
phpBB 2.0.19 Released today!
PostPosted: 01/05/2006 1:56 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30756
Word Cnt. 2,628,678
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:59 PM
Location: St Pete, FL
peace.gif
There may be some dimensions that you would want to be hardcoded, but those are extremely rare.  So chances are, if you see a width that is hardcoded, it can be replaced with a percentage so that it will adjust to the size of the page for each user.  If you want a column to always display a certain size no matter what, then you would probably hardcode it...

headbang
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: phpBB 2.0.19 Released today!
PostPosted: 01/05/2006 6:20 PM Reply with quote
Citation
Glenn I
Citation
Posts 2152
Word Cnt. 78,257
BDay Jun 15
Sign Gemini
Sex Sex:Male
Joined: Apr 22, 2005
Local time: 3:59 AM
Location: Upside down
australC_1xa.gif
I looked at my board and thought that you must of did the update because it said

Quote:
Your installation is up to date, no updates are available for your version of phpBB.


But when I looked at easy mod the code changes mod thingy is still sitting there.

dontknow
Back to Top
View user's profile Find all posts by Glenn I Send private message   Visit poster's website Phoogle Map
phpBB 2.0.19 Released today!
PostPosted: 01/05/2006 9:38 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30756
Word Cnt. 2,628,678
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:59 PM
Location: St Pete, FL
peace.gif
Correct.  You ran the update_to_latest.php file which updated your database.  So as far as your database is concerned, your board is updated to 2.0.19.  But you still have to make the code changes to your files.  Until you complete the 2.0.19 Update in EM, then your board will still be 2.0.18 even if your database thinks otherwise...

munky2
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: phpBB 2.0.19 Released today!
PostPosted: 01/05/2006 10:25 PM Reply with quote
Citation
Glenn I
Citation
Posts 2152
Word Cnt. 78,257
BDay Jun 15
Sign Gemini
Sex Sex:Male
Joined: Apr 22, 2005
Local time: 3:59 AM
Location: Upside down
australC_1xa.gif
Nightrider wrote:
Download the newest copy of your includes/usercp_register.php file and open it in your editor.  Search for a line that starts with this:

Code:
$strip_var_list = array('username' => 'username'


If you find a match, just change the matching FIND in the Update file to read this:

Code:
#
#-----[ FIND ]---------------------------------------------
# Line 110
   $strip_var_list = array('username' => 'username'
   $strip_var_list['confirm_code'] = 'confirm_code';


Now the REPLACE WITH command in the Update file will be a bit trickier since it is building on and replacing existing code...

Copy the entire matching line from your usercp_register.php file to your REPLACE WITH statement.  Then at the end, before the ending parethesis, add the , 'confirm_code' => 'confirm_code' code to the script.  The REPLACE WITH command will probably look something like this now:

Code:
#
#-----[ REPLACE WITH ]---------------------------------------------
#
   $strip_var_list = array('username' => 'username', 'email' => 'email', 'icq' => 'icq', 'aim' => 'aim', 'msn' => 'msn', 'yim' => 'yim', 'website' => 'website', 'location' => 'location', 'occupation' => 'occupation', 'interests' => 'interests', 'confirm_code' => 'confirm_code');


Don't take my word for it though because I didn't look at a fresh copy of your usercp_register.php file.  All this part of the Update script is doing is combining two lines of code into one.  It doesn't really improve or fix anything...

Save the Update file, upload it, then retry again in EM...

headbang


I did a search for -

Code:
$strip_var_list = array('username' => 'username'


but couldn't find it.
Back to Top
View user's profile Find all posts by Glenn I Send private message   Visit poster's website Phoogle Map
phpBB 2.0.19 Released today!
PostPosted: 01/05/2006 10:43 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30756
Word Cnt. 2,628,678
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:59 PM
Location: St Pete, FL
peace.gif
I just downloaded a fresh copy of your usercp_register.php file and I had no trouble finding the line in question.  Search again, Glenn.  It is there...

headbang
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: phpBB 2.0.19 Released today!
PostPosted: 01/05/2006 10:58 PM Reply with quote
Citation
Glenn I
Citation
Posts 2152
Word Cnt. 78,257
BDay Jun 15
Sign Gemini
Sex Sex:Male
Joined: Apr 22, 2005
Local time: 3:59 AM
Location: Upside down
australC_1xa.gif
Had another look after I posted and found it. Did all the changes and went through with it to easy mod and it worked with no errors  sunny
Back to Top
View user's profile Find all posts by Glenn I Send private message   Visit poster's website Phoogle Map
phpBB 2.0.19 Released today!
PostPosted: 01/05/2006 11:07 PM Reply with quote
Site Admin
rb2d2
Site Admin
Posts 49593
Word Cnt. 2,756,445
BDay Apr 22
Sign Taurus
Sex Sex:Female
Joined: Sep 25, 2004
Local time: 11:59 AM
Location: Texas
texasC.gif
Yahoooooooooooo!!   I love successes!


blob8  blob8  blob8
Back to Top
View all pictures posted by this userView user's profile Find all posts by rb2d2 Send private message   Visit poster's website Phoogle Map
phpBB 2.0.19 Released today!
PostPosted: 01/05/2006 11:14 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30756
Word Cnt. 2,628,678
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:59 PM
Location: St Pete, FL
peace.gif
I love successes too.  Congratulations Glenn!!!

Applause
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: phpBB 2.0.19 Released today!
PostPosted: 01/05/2006 11:37 PM Reply with quote
Citation
Glenn I
Citation
Posts 2152
Word Cnt. 78,257
BDay Jun 15
Sign Gemini
Sex Sex:Male
Joined: Apr 22, 2005
Local time: 3:59 AM
Location: Upside down
australC_1xa.gif
As Hannibal from the A Team says " I love it when a plan comes together"

I can stop doing this now  Brick wall

Thanks Blake  prayer
Back to Top
View user's profile Find all posts by Glenn I Send private message   Visit poster's website Phoogle Map
 Post new topic  Reply to topic
Information
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum
All times are GMT - 5 Hours
Goto page: Previous  1, 2, 3, 4, 5, 6  Next
Page 5 of 6


Add To Bookmarks

 
  
  


  Google

Powered by phpBB © 2001, 2005 phpBB Group
  ImageShack  
  Putfile  
  TinyURL  
  CommonDreams  
  Log in  

Page generation time: 0.1405s (PHP: 82% - SQL: 18%) - SQL queries: 61 - GZIP enabled - Debug on