We Ride the Lines
Would you like to react to this message? Create an account in a few clicks or log in to continue.

New Site Details

+40
Chui Ninji
weebit
WishLine
iPi
OTDE
efrazable
VividRedemption
Wolf_Spirit
Opal Rider
Lukking
Absox
CamQuartr
captain_cornflakes
Kayped
Kohuda
Mikeee7787
mhenr18
Morgan
TeamBlast
Stallie
Sheldon
MegaSonicX
Hotflash
hypothet
darklight
Helios Pavonine
InsaneDevan
WTB
Loz
KillinTime2792
Darkness
crash2burn
Derpinator
TheRevTastic
Jam
Cereal
Rafael
Yobanjojoe
Georgio_jc
rabid squirrel
44 posters

Page 8 of 14 Previous  1 ... 5 ... 7, 8, 9 ... 14  Next

Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by MegaSonicX Fri Jul 08, 2011 2:11 pm

OK so I barely managed to get it to work but here's what it'll look like.

TOMUCHWORK!:
MegaSonicX
MegaSonicX
Member


http://seasonoftreason.uphero.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by CamQuartr Fri Jul 08, 2011 2:36 pm

aww yea^ that looks awesome

CamQuartr
Member


http://www.CameronKashtan.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Absox Fri Jul 08, 2011 7:04 pm

Wow that looks really similar to the old site.
Absox
Absox
Member


Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by MegaSonicX Fri Jul 08, 2011 8:14 pm

And now for the Top 10 thing on the index page:

Spoiler:

This was as close I could get to it without taking days to rewrite a script into a format that AuotMOD can understand and use. It's Flash based so I don't recommend using it.
MegaSonicX
MegaSonicX
Member


http://seasonoftreason.uphero.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by rabid squirrel Sat Jul 09, 2011 3:19 am

MegaSonicX wrote:And now for the Top 10 thing on the index page:

Spoiler:

This was as close I could get to it without taking days to rewrite a script into a format that AuotMOD can understand and use. It's Flash based so I don't recommend using it.
if you can, these things would be great

1. recent announcements posted
2. recent tracks posted
3. recent featured movies
3. recent topics (forum wide) posted

Don't bother with anything else (new users, recent replies, top viewed, largest threads, top posters, etc.)

Awards screenshot looks great but it doesn't seem to be installed on the site...

also, here's a gallery of fail for you:
Spoiler:
This is only the worst stuff, there are some other things that bug me but I can live with for now.
rabid squirrel
rabid squirrel
Member

I'm the artsy person round here

Community Pick: Braggadocio
3rd place in Tournament of Legends 4th place in Tournament of Legends

http://www.benjaminharveydesign.com/

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Kayped Sat Jul 09, 2011 11:50 am

Wow guys, it's looking really good, keep it up!
Kayped
Kayped
Member


Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by MegaSonicX Sat Jul 09, 2011 1:34 pm

1. recent announcements posted - Couldn't find it.
2. recent tracks posted - Might have found it.
3. recent featured movies - Couldn't find it.
3. recent topics (forum wide) posted - Found it.

Since track are going to be posted as threads or topics, we could just modify the Recent Topics Mod to show tracks. We might also be able to do that with the Announcements but IDK. And the modifying would have to be done by someone else cuz I absolutely blow at PHP.


EDIT: But I did manage to get this:

Code:

//Display recent Anouncements
    function recent_announce()
    {
        global $db, $template;
        $max_topics = 5;

        $sql = 'SELECT topic_title, forum_id, topic_id
            FROM ' . TOPICS_TABLE . '
            WHERE topic_status <> 2
                AND topic_approved = 1
                AND (topic_type = 2 OR topic_type = 3)
            ORDER BY topic_time DESC';
        $result = $db->sql_query_limit($sql, $max_topics);

        while ($row = $db->sql_fetchrow($result))
        {
            $template->assign_block_vars('latest_announcements', array(
                'TITLE'                => censor_text($row['topic_title']),
                'U_VIEW_TOPIC'        => append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f={$row['forum_id']}&amp;t={$row['topic_id']}"))
            );
        }
        $db->sql_freeresult($result);
    } 

Then the HTML:
Code:

    <div class="panel bg2">
        <div class="inner"><span class="corners-top"><span></span></span>
        <h3>{L_RECENT_ANNOUNCE}</h3>
        <!-- BEGIN latest_announcements -->
            <a href="{latest_announcements.U_VIEW_TOPIC}">{latest_announcements.TITLE}</a><br />
        <!-- BEGINELSE -->
            {L_NO_RECENT_ANNOUNCEMENTS}
        <!-- END latest_announcements -->
        <span class="corners-bottom"><span></span></span></div>
    </div>

And in the language file:
Code:

'RECENT_ANNOUNCE'                => 'Recent Announcements',
'NO_RECENT_ANNOUNCEMENTS'  => 'Sorry, there were no announcements found',

It shows up on my test forum with no errors at all but after I post some announcements, it still says Sorry, there were no announcements found. Can anyone help me?
MegaSonicX
MegaSonicX
Member


http://seasonoftreason.uphero.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by MegaSonicX Sat Jul 09, 2011 2:47 pm

OK guys, I uploaded a test forum so I don't have to keep posting screen shots every time I wanna show you something.

http://dansaunders.me/~sot/forum3
MegaSonicX
MegaSonicX
Member


http://seasonoftreason.uphero.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by MegaSonicX Thu Jul 14, 2011 8:28 am

I forgot to tell you guys, phpBB 3.0.9 just came out. WRtL is on 3.0.8. Should we upgrade it? When I upgraded on my forums it didn't SEEM to change anything except the Mods. We have like 3-4 installed so IDK if it'll be that much of a problem. It screwed me over when I did it, but as I've been told by countless people (ily <3) I'm inexperienced :P
MegaSonicX
MegaSonicX
Member


http://seasonoftreason.uphero.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Helios Pavonine Thu Jul 14, 2011 9:09 am

Why Dan Saunders? Reminded me of Ben and Dean Saunders xD
Helios Pavonine
Helios Pavonine
Member

2nd place in Tournament of Legends

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by MegaSonicX Sun Jul 17, 2011 2:24 pm

OK so I've done all I can. I've finished everything that I could in the UCP, and I just added the pollbars. It'll be a tiny bit different than old IRtL but it'll still look similar. The poll box/holder/whatever it's called, isn't skinned cuz I don't feel like converting the whole thing to a table :| Anyway yeah, I won't be working on the site any longer. The last few bits are all for TB and RevO (If they even remember about the site...)
MegaSonicX
MegaSonicX
Member


http://seasonoftreason.uphero.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by TheRevTastic Sun Jul 17, 2011 9:12 pm

I can't skin phpbb, it would take me to long to learn the skining system and I am busy with web clients trying to keep my vps up and online.

Also so MSX you are totally done with all you can do?
TheRevTastic
TheRevTastic
Member


http://www.therevtastic.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by MegaSonicX Sun Jul 17, 2011 9:32 pm

Oh ok then, I understand. And yeah pretty much. I might be able to do a few things if you guys find anything unfinished.
MegaSonicX
MegaSonicX
Member


http://seasonoftreason.uphero.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Yobanjojoe Mon Jul 18, 2011 1:58 am

Helios Pavonine wrote:Why Dan Saunders? Reminded me of Ben and Dean Saunders xD

dansaunders is TeamBlast
Yobanjojoe
Yobanjojoe
Member

swag


Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Helios Pavonine Mon Jul 18, 2011 9:10 am

Yobanjojoe wrote:
Helios Pavonine wrote:Why Dan Saunders? Reminded me of Ben and Dean Saunders xD

dansaunders is TeamBlast

Ok :P
Helios Pavonine
Helios Pavonine
Member

2nd place in Tournament of Legends

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Lukking Wed Jul 20, 2011 11:02 am

sooooooo is there any date for the new site to check in?
Lukking
Lukking
Member

Community Pick: SYTYKC
4th place in Tournament of Legends

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Opal Rider Wed Jul 20, 2011 12:11 pm

Do we know you?
jk, jk
Opal Rider
Opal Rider
Moderator

Aestetikally appealing


Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Jam Wed Jul 20, 2011 12:38 pm

Opal Rider wrote:Do we know you?
jk, jk
If you're reffering to Lukking... You need to do some research on quirk history. Kbai.


EDIT: Never mind the fact that I get distracted from the tiny letters.


Last edited by Jam on Wed Jul 20, 2011 6:29 pm; edited 1 time in total
Jam
Jam
Member


Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by MegaSonicX Wed Jul 20, 2011 3:59 pm

Opal Rider wrote:Do we know you?
jk, jk
You're so lucky I noticed the jk, jk :|

As for the site, I'm not sure. I'd like to think it'll be done by the end of the month but IDK. You should ask TB because he's in charge of the rest of the site.
MegaSonicX
MegaSonicX
Member


http://seasonoftreason.uphero.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Mikeee7787 Wed Jul 20, 2011 6:44 pm

END OF THE MONTH? NOT FAST ENOUGH IM LEAVING BYE
NOT JK
Mikeee7787
Mikeee7787
Member


Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by MegaSonicX Wed Jul 20, 2011 7:00 pm

Good riddance :|
MegaSonicX
MegaSonicX
Member


http://seasonoftreason.uphero.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by TheRevTastic Wed Jul 20, 2011 7:08 pm

Just a heads up, before the site opens, I will be switching vps providers due to me not wanting/and not being able to afford $50 a month anymore.
TheRevTastic
TheRevTastic
Member


http://www.therevtastic.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Wolf_Spirit Sun Jul 31, 2011 9:43 am

So...
._.
Wolf_Spirit
Wolf_Spirit
Member

Retired Admin


Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by rabid squirrel Sun Jul 31, 2011 10:21 am

I don't believe we will be moving.
rabid squirrel
rabid squirrel
Member

I'm the artsy person round here

Community Pick: Braggadocio
3rd place in Tournament of Legends 4th place in Tournament of Legends

http://www.benjaminharveydesign.com/

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by MegaSonicX Sun Jul 31, 2011 11:18 am

We might as well trash the site. It's a lost cause now.
MegaSonicX
MegaSonicX
Member


http://seasonoftreason.uphero.com

Back to top Go down

New Site Details - Page 8 Empty Re: New Site Details

Post by Sponsored content


Sponsored content


Back to top Go down

Page 8 of 14 Previous  1 ... 5 ... 7, 8, 9 ... 14  Next

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum