Style changes from 3.0.0-RC5 up to 3.0.3

For support and discussion related to templates, themes, and imagesets in phpBB 3.0.
Suggested Hosts
User avatar
Highway of Life
Former Team Member
Posts: 6048
Joined: Wed Feb 02, 2005 5:41 pm
Location: Bend, OR
Name: David Lewis

Re: Style changes from RC5 to RC8

Post by Highway of Life »

TheBuzzSaw wrote:Is there any idea as to when the style changes will slow down or stop between Release Candidates? It is sad to see a bunch of skins go dead with each release. Obviously, each RC is for the best, but I just hope there comes a time where I can use a skin without fear of the next upgrade destroying it. :(
It was only the update from RC5 to RC6/7 that caused styles built for <= RC5 to not work correctly.
Any style that has been updated to RC6/7 will work with RC8+
We cannot say when style updates will stop, they likely won’t stop until Gold Release. But that is the nature of the beast when running Release Candidate software, and in-fact whenever software updates period. The changes between RC7 and RC8 are very minor.
Even when phpBB3 is upgraded for example, from 3.0.0 to 3.0.1, styles still may need to be upgraded to accommodate, the same is true of MODs. It doesn’t necessarily mean styles and MODs for RC7 won’t work on RC8 and above, just that there will always be code changes when software gets updated.
tupeu
Registered User
Posts: 320
Joined: Wed Jul 25, 2007 5:47 pm
Location: roFLmania

Re: Style changes from RC5 to RC8

Post by tupeu »

RC7 --> RC8 Problems:

______________________________________________________
open: /styles/prosilver/template/mcp_notes_user.html

no modifications after:

inline find :

Code: Select all

{S_FORM_TOKEN}
_______________________________________________________

open: /styles/prosilver/template/ucp_attachments.html


no "code" tag around:

</fieldset>
<!-- ENDIF -->
</form>

<!-- INCLUDE ucp_footer.html -->

________________________________________________________


Open: /styles/prosilver/theme/buttons.css

no "code" tag around:

width: 100%;
height: 100%;
background-position: 0 0;

EDIT When you wrote the modifications from RC7 to RC8 you have some minor problems as I showed you, that is all!
Thank you for these modifications anyway.
Last edited by tupeu on Sun Dec 02, 2007 12:45 pm, edited 1 time in total.
User avatar
Raimon
Former Team Member
Posts: 12088
Joined: Tue May 30, 2006 5:31 pm
Location: Netherlands
Name: Raimon Meuldijk

Re: Style changes from RC5 to RC8

Post by Raimon »

@tupeu;

what are you doing , what is the use to type the changes that i posted already?
Need phpBB installation, extenstions, Styles or integrate phpBB with you website?
Contact me @ www.raimon.nl for fair prices and good service!
User avatar
TheBuzzSaw
Registered User
Posts: 49
Joined: Tue Dec 12, 2006 9:26 am
Location: USA (Idaho)

Re: Style changes from RC5 to RC8

Post by TheBuzzSaw »

Highway of Life wrote:It was only the update from RC5 to RC6/7 that caused styles built for <= RC5 to not work correctly.
Any style that has been updated to RC6/7 will work with RC8+
We cannot say when style updates will stop, they likely won’t stop until Gold Release. But that is the nature of the beast when running Release Candidate software, and in-fact whenever software updates period. The changes between RC7 and RC8 are very minor.
Even when phpBB3 is upgraded for example, from 3.0.0 to 3.0.1, styles still may need to be upgraded to accommodate, the same is true of MODs. It doesn’t necessarily mean styles and MODs for RC7 won’t work on RC8 and above, just that there will always be code changes when software gets updated.
Ah, that's good to know! I'm glad RC7 skins still work! Thanx!
Amateurs go until they get it right.
Professionals go until they never get it wrong.
MasterVamp
Registered User
Posts: 10
Joined: Tue Jun 05, 2007 5:16 am

Re: Style changes from RC5 to RC8

Post by MasterVamp »

The complet rc8 dowload include this changes?

sorry for my english.
User avatar
Raimon
Former Team Member
Posts: 12088
Joined: Tue May 30, 2006 5:31 pm
Location: Netherlands
Name: Raimon Meuldijk

Re: Style changes from RC5 to RC8

Post by Raimon »

Can you find on the download page ; http://www.phpbb.com/downloads/ :)
Need phpBB installation, extenstions, Styles or integrate phpBB with you website?
Contact me @ www.raimon.nl for fair prices and good service!
statm
Registered User
Posts: 451
Joined: Thu Jul 21, 2005 11:03 am
Location: NC, USA
Name: Matt

Re: Style changes from RC5 to RC8

Post by statm »

MasterVamp wrote:The complet rc8 dowload include this changes?

sorry for my english.
Yes RC8 includes all the changes that have been made to the entire package since RC7. But if you have a custom style you will have to manually update it using the changes Raimon posted.
AlpineYJ
Registered User
Posts: 2
Joined: Fri Dec 07, 2007 2:18 pm

Re: Style changes from RC5 to RC8

Post by AlpineYJ »

Here's a much simpler work-around that will get your board working (if you were unfortunate enough to upgrade to RC8 from RC5) until a less clunky fix comes out:

* edit includes/function.php
* Go to line 2046: "function check_form_key(..."
* Go to the bottom of the function to where it says "return false".
* Comment it out, and put "return true" underneath it.
* Close and save.
* Write yourself a note to remind yourself what you did, so the next time you go to run a patch file, that you can change it back so it won't throw up all over itself.

Here's what the bottom will look like:
...
if ($trigger)
{
trigger_error($user->lang['FORM_INVALID'] . $return_page);
}
//return false;
return true;

I'm sure this disables something very important, but it definitely beats spending 4 hours doing the work-arounds suggested above.
User avatar
Raimon
Former Team Member
Posts: 12088
Joined: Tue May 30, 2006 5:31 pm
Location: Netherlands
Name: Raimon Meuldijk

Re: Style changes from RC5 to RC8

Post by Raimon »

I don't advise you to do that , and it can be a quick trick but of it works is a second thing.
Because i believe it don't effect the S_TOKENS only the error message.
And when you update your board to RC8 you don't get that problem , also when you switch to prosilver/subsilver2 you don't get log-in problems. :)
Need phpBB installation, extenstions, Styles or integrate phpBB with you website?
Contact me @ www.raimon.nl for fair prices and good service!
Kassim
Registered User
Posts: 20
Joined: Tue Jul 03, 2007 8:48 am

Re: Style changes from RC5 to RC8

Post by Kassim »

Thank you for your work you saved my forum :)
Xboxsosmart
Registered User
Posts: 171
Joined: Sun Nov 04, 2007 3:09 pm

Re: Style changes from RC5 to RC8

Post by Xboxsosmart »

Good job Raimon.

Now im not going to bother updating to RC7 :D

Thank god my host does it all for me. :geek:
User avatar
Raimon
Former Team Member
Posts: 12088
Joined: Tue May 30, 2006 5:31 pm
Location: Netherlands
Name: Raimon Meuldijk

Re: Style changes from RC8 to 3.0.0

Post by Raimon »

Style changes from RC8 to 3.0.0

A verry large list to update your style to GOLD



GOTCHA :mrgreen: :mrgreen: :mrgreen: :mrgreen: :mrgreen: :mrgreen:

Now for real;

open: styles/prosilver/template/jumpbox.html

search: (on line +28)

Code: Select all

</fieldset>
  	</form>
after add:

Code: Select all

 <!-- ELSE -->
	<br />
open: styles/prosilver/template/ucp_pm_options.html

search:

Code: Select all

<li><div class="right-box"><input type="submit" name="delete_rule[{rule.RULE_ID}]" value="{L_DELETE_RULE}" class="button2" /></div><strong>{L_IF}</strong> {rule.CHECK} <em>{rule.RULE}</em> <!-- IF rule.STRING --><strong>{rule.STRING}</strong> | <!-- ENDIF -->{rule.ACTION}<!-- IF rule.FOLDER -->: {rule.FOLDER}<!-- ENDIF --></li>

replace with:

Code: Select all

<li><div class="right-box"><input type="submit" name="delete_rule[{rule.RULE_ID}]" value="{L_DELETE_RULE}" class="button2" /></div><strong>{L_IF}</strong> {rule.CHECK} <em>{rule.RULE}</em> <!-- IF rule.STRING --><strong>{rule.STRING}</strong> | <!-- ENDIF -->{rule.ACTION}<!-- IF rule.FOLDER -->: {rule.FOLDER}<!-- ENDIF --><div style="clear: both;"></div></li>
  	
Thats all what you must do :mrgreen:
Last edited by Raimon on Sun Jul 27, 2008 8:20 pm, edited 1 time in total.
Need phpBB installation, extenstions, Styles or integrate phpBB with you website?
Contact me @ www.raimon.nl for fair prices and good service!
romel
Registered User
Posts: 83
Joined: Tue Feb 06, 2007 8:12 pm

Re: Style changes from RC5 up to Gold

Post by romel »

This is from rc7 to gold or rc8 to gold?
Thatbitextra
Former Team Member
Posts: 7604
Joined: Mon Mar 21, 2005 5:04 am
Location: A place where something is or could be located; a site.

Re: Style changes from RC5 up to Gold

Post by Thatbitextra »

romel wrote:This is from rc7 to gold or rc8 to gold?
That last post is RC8 to gold only. RC7 to RC8 starts here.
Styles KB
My MODs: Choose Who to Accept PMs From (Prevents unwanted PMs!) | Warn of Old Topic Before Posting Reply
Style: subBlack (Now updated to phpBB 2.0.22 and 5 new color schemes!)
skyler-d
Registered User
Posts: 22
Joined: Mon Oct 08, 2007 7:59 pm

Re: Style changes from RC5 up to Gold

Post by skyler-d »

is there the changes for subsilver 2 from rc8 to gold?

Return to “[3.0.x] Styles Support & Discussion”