Page 1 of 1
Probleme CA_Orbital
Posted: 8. May 2012 10:22
by Briareos
Deine Portal Version: 2.0.0b1
Typ Deines phpBB Forums: Standard phpBB3
MODs installiert: Nein
Dein Wissensstand: Einsteiger
Link zu Deinem Forum: http://lfss-ogame.g-portal.biz
Was hast Du gemacht, bevor das Problem aufgetreten ist?
Was hast Du bereits versucht um das Problem zu lösen?
Fehlerbeschreibung und Nachricht
Grundinfo:
PHPBB 3.0.10
Board Version: 2.0.0b1
Style: CA_Orbital aktuelle Version für PHPBB 3.0.10
Hallo ich hatte die oben genannten Elemente installiert.
Danach das Style installiert und aktiviert.
Dann euren Anweisungen aus der Anleitung gefolgt.
Dateien hochgeladen und siehe da, das Portal sah wunderbar aus, aber dann wollte ich ins Forum und alles war Leer nur der Hintergrund war zu sehen.
Darauf hin habe ich alle Änderungen revidiert und jede Datei einzelnt hochgeladen.
Es stellte sich heraus das die overall_header den Fehler verursachte.
Soweit so gut das Style funktioniert mir fehlt nur im Forum Bereich der Button um wieder zum Portal zurück zu gelangen.
Kann mir wer dabei helfen?
Mit freundlichen Gruss
Marc
Re: Probleme CA_Orbital
Posted: 8. May 2012 23:10
by archivar
Briareos wrote:
Style: CA_Orbital aktuelle Version für PHPBB 3.0.10
Dann euren Anweisungen aus der Anleitung gefolgt.
Entschuldigung, da ist beim Kopieren der Anleitung was auf der Strecke geblieben.
Wird von mir sogleich korrigiert und gebe dann Bescheid.
EDIT:
Fehler in der Anleitung korrigiert ==> viewtopic.php?f=57&t=5398
Re: Probleme CA_Orbital
Posted: 5. July 2012 09:16
by noth
in addition to that, first I would like to say that the portal for ca_orbital looks GREAT!
but the only thing is that the POLL has not quite optimised
ca_orbital poll looks like this
click here
it should look like this
click here
Re: Probleme CA_Orbital
Posted: 5. July 2012 14:23
by archivar
noth wrote:in addition to that, first I would like to say that the portal for ca_orbital looks GREAT!
but the only thing is that the POLL has not quite optimised
ca_orbital poll looks like this
click here
it should look like this
click here
Guilt is not the portal!!
We will not change all the blocks, when style-author leaves the basis of standard style!!
Comparisons to "poll" file content viewtopic_body.html and colours.css of prosilver with their style.
I have a solution to the problem:
search in poll_center.html:
Code: Select all
<p class="author">{poll.L_POLL_LENGTH}<!-- IF poll.S_CAN_VOTE and poll.L_POLL_LENGTH --><br /><!-- ENDIF --><!-- IF poll.S_CAN_VOTE -->{poll.L_MAX_VOTES}<!-- ENDIF --></p>
<fieldset class="polls">
<!-- IF poll.S_POLL_HAS_OPTIONS -->
<!-- BEGIN poll_option -->
<dl class="<!-- IF poll.poll_option.POLL_OPTION_VOTED -->voted<!-- ENDIF -->"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> title="{L_POLL_VOTED_OPTION}"<!-- ENDIF -->>
<dt><!-- IF poll.S_CAN_VOTE --><label for="poll_{poll.TOPIC_ID}_vote_{poll.poll_option.POLL_OPTION_ID}">{poll.poll_option.POLL_OPTION_CAPTION}</label><!-- ELSE -->{poll.poll_option.POLL_OPTION_CAPTION}<!-- ENDIF --></dt>
<!-- IF poll.S_CAN_VOTE --><dd style="width: auto;"><!-- IF poll.S_IS_MULTI_CHOICE --><input type="checkbox" name="vote_id[]" id="poll_{poll.TOPIC_ID}_vote_{poll.poll_option.POLL_OPTION_ID}" value="{poll.poll_option.POLL_OPTION_ID}"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ELSE --><input type="radio" name="vote_id[]" id="poll_{poll.TOPIC_ID}_vote_{poll.poll_option.POLL_OPTION_ID}" value="{poll.poll_option.POLL_OPTION_ID}"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ENDIF --></dd><!-- ENDIF -->
<!-- IF poll.S_DISPLAY_RESULTS --><dd class="resultbar"><div class="<!-- IF poll.poll_option.POLL_OPTION_PCT < 20 -->pollbar1<!-- ELSEIF poll.poll_option.POLL_OPTION_PCT < 40 -->pollbar2<!-- ELSEIF poll.poll_option.POLL_OPTION_PCT < 60 -->pollbar3<!-- ELSEIF poll.poll_option.POLL_OPTION_PCT < 80 -->pollbar4<!-- ELSE -->pollbar5<!-- ENDIF -->" style="width:{poll.poll_option.POLL_OPTION_PERCENT};">{poll.poll_option.POLL_OPTION_RESULT}</div></dd>
<dd><!-- IF poll.poll_option.POLL_OPTION_RESULT == 0 -->{L_NO_VOTES}<!-- ELSE -->{poll.poll_option.POLL_OPTION_PERCENT}<!-- ENDIF --></dd><!-- ENDIF -->
replace:
Code: Select all
<p class="poll-author">{poll.L_POLL_LENGTH}<!-- IF poll.S_CAN_VOTE and poll.L_POLL_LENGTH --><br /><!-- ENDIF --><!-- IF poll.S_CAN_VOTE -->{poll.L_MAX_VOTES}<!-- ENDIF --></p>
<fieldset class="polls">
<!-- IF poll.S_POLL_HAS_OPTIONS -->
<!-- BEGIN poll_option -->
<dl class="<!-- IF poll.poll_option.POLL_OPTION_VOTED -->voted<!-- ENDIF -->"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> title="{L_POLL_VOTED_OPTION}"<!-- ENDIF -->>
<dt><!-- IF poll.S_CAN_VOTE --><label for="poll_{poll.TOPIC_ID}_vote_{poll.poll_option.POLL_OPTION_ID}">{poll.poll_option.POLL_OPTION_CAPTION}</label><!-- ELSE -->{poll.poll_option.POLL_OPTION_CAPTION}<!-- ENDIF --></dt>
<!-- IF poll.S_CAN_VOTE --><dd style="width: auto;"><!-- IF poll.S_IS_MULTI_CHOICE --><input type="checkbox" name="vote_id[]" id="poll_{poll.TOPIC_ID}_vote_{poll.poll_option.POLL_OPTION_ID}" value="{poll.poll_option.POLL_OPTION_ID}"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ELSE --><input type="radio" name="vote_id[]" id="poll_{poll.TOPIC_ID}_vote_{poll.poll_option.POLL_OPTION_ID}" value="{poll.poll_option.POLL_OPTION_ID}"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ENDIF --></dd><!-- ENDIF -->
<!-- IF poll.S_DISPLAY_RESULTS -->
<dd class="resultbar">
<div class="pollbar <!-- IF poll_option.POLL_OPTION_RESULT == 0 -->pollbar-empty<!-- ELSEIF poll_option.POLL_OPTION_PERCENT == '100%' -->pollbar-full<!-- ELSE -->pollbar-half<!-- ENDIF -->">
<div>
<table width="<!-- IF poll_option.POLL_OPTION_RESULT == 0 -->1%<!-- ELSE -->{poll_option.POLL_OPTION_PERCENT}<!-- ENDIF -->" border="0" cellspacing="0" cellpadding="0"><tr><td>{poll_option.POLL_OPTION_RESULT}</td></tr></table>
</div>
</div>
</dd>
<dd>
<!-- IF poll.poll_option.POLL_OPTION_RESULT == 0 -->{L_NO_VOTES}<!-- ELSE -->{poll.poll_option.POLL_OPTION_PERCENT}<!-- ENDIF -->
</dd>
<!-- ENDIF -->
Re: Probleme CA_Orbital
Posted: 5. July 2012 15:25
by noth
Archivar thank you, your solution works
VERY GOOD!
Re: Probleme CA_Orbital
Posted: 5. August 2012 21:20
by Cordarex
Hi,
ich habe die Anleitung in Bezug auf die Portal-installation und die anschließende Umwandlung von Prosilver auf CA Orbital. Leider hat das Portal keine vernünftige Anordnung, alles ist nach unten hin struckturiert... ich weiß nicht mehr weiter...
http://www.mysteriousconnection.de/portal.php?style=4 Hier der Link zum Style Orbital
Ich hoffe mal hier wird mir geholfen...
Re: Probleme CA_Orbital
Posted: 5. August 2012 21:44
by archivar
Cordarex wrote:Hi,
ich habe die Anleitung in Bezug auf die Portal-installation und die anschließende Umwandlung von Prosilver auf CA Orbital. Leider hat das Portal keine vernünftige Anordnung, alles ist nach unten hin struckturiert... ich weiß nicht mehr weiter...
http://www.mysteriousconnection.de/portal.php?style=4 Hier der Link zum Style Orbital
Ich hoffe mal hier wird mir geholfen...
Du hast mehrere Fehler in der overall_header.html und in der overall_footer.html verbaut!
Schau mal hier und mach es wie es in der Anleitung steht:
viewtopic.php?f=57&t=5398
Und such mal in der includes/session.php nach dieser Zeile:
Code: Select all
if (!empty($_GET['style']) && !defined('ADMIN_START'))
und ersetze damit (damit Gäste einen Style wählen können)
Code: Select all
if (!empty($_GET['style']) && !defined('ADMIN_START') && !$this->data['is_bot'])
Re: Probleme CA_Orbital
Posted: 5. August 2012 22:21
by Cordarex
Nun erhalte ich folgendes
"Parse error: syntax error, unexpected $end in /var/www/web1146/html/board/cache/tpl_ca-orbital_overall_header.html.php on line 255"
-_- Ich hab nun die die overall_header & footer nach Anleitung bearbeitet...
Re: Probleme CA_Orbital
Posted: 5. August 2012 22:35
by archivar
Bitte den Style aktualisieren und den Cache leeren.
Re: Probleme CA_Orbital
Posted: 5. August 2012 22:40
by Cordarex
Cordarex wrote:Nun erhalte ich folgendes
"Parse error: syntax error, unexpected $end in /var/www/web1146/html/board/cache/tpl_ca-orbital_overall_header.html.php on line 255".
Style aktualisiert & Cache geleert... weiterhin Fehler on line 255...
Nunja, dann bleibt wohl nichts anderes als nochmal neu nach Anleitung
EDIT: DANKE! Nun hat alles funktioniert... ich meine zu glauben dass ich teilweise eine neue Zeile für diverse, einzufügende Codepassagen verwendet habe...
Super Arbeit das Portal! Vielen Dank....