Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > General > Member Archives
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
my new website (interface) Details »»
my new website (interface)
Version: , by TECK TECK is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 04-08-2002 Last Update: Never Installs: 0
 
No support by the author.

[high]UPDATE:[/high] i did the final layout:
https://vborg.vbsupport.ru/attachmen...&postid=240540
i will stick with this one... special thanks to serenity (a girl who kick ass in html).
i didnt put any copyright note over it, so firefly can see it well.

May 7th 2002
the news page (built entirely with VB code):
https://vborg.vbsupport.ru/attachmen...&postid=249059

Forums HomePage FORUMBITS Update:
take a look and let me know what you think:
https://vborg.vbsupport.ru/showthrea...579#post241579

below is the original post:
--------------------------------
here it is one of my interfaces. i will post more and let you decide wich one should i choose as the default scheme.
for now let me know what you think about those 2.
just be specific wich one you like better...

Other choices:
2nd interface (freaky blue)

Below is my first interface, [high]Teal Misery[/high]:

Download Now

File Type: (21.4 KB, 577 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #32  
Old 04-14-2002, 01:22 PM
c-pr0mpt's Avatar
c-pr0mpt c-pr0mpt is offline
 
Join Date: Oct 2001
Location: Michigan
Posts: 235
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I like the new one much better than the original. Good job.
Reply With Quote
  #33  
Old 04-14-2002, 01:38 PM
TECK's Avatar
TECK TECK is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 4,182
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks c-prompt. i reserve to all the forumbits surprise..
today,.. or tomorrow.

PPN, really nice. is that the site you show me a screenshot of your admin CP?

djsap.. i know about .htaccess... i dont like it. i moded all. install.php, vbulletin.style, etc so when i will go online with i will simply do one install and is done, no custom templates etc.

i made a little system that it allow me to edit the .style file (easier then through templates) then with one click everything is updated.
Reply With Quote
  #34  
Old 04-14-2002, 02:11 PM
Admin's Avatar
Admin Admin is offline
Coder
 
Join Date: Oct 2023
Location: Server
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nakkid, bear in mind that if you update the -1 templateset, all your templates will be deleted when you upgrade. If you don't touch that set, never mind.
Reply With Quote
  #35  
Old 04-14-2002, 03:18 PM
wooolF[RM]'s Avatar
wooolF[RM] wooolF[RM] is offline
 
Join Date: Jan 2002
Posts: 524
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

]2 much white for me... (https://vborg.vbsupport.ru/attachmen...&postid=240540 )

I'm more with gray/blue/red colors...

check my 2 flashes
http://www.wooolf.net/ (flash intro for my homepage [450Kb])
http://www.mpc.turbohost.net/flash (flash intro for MPC forums [900Kb])
Reply With Quote
  #36  
Old 04-14-2002, 03:25 PM
Admin's Avatar
Admin Admin is offline
Coder
 
Join Date: Oct 2023
Location: Server
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice woolf, you've got some skills.
BTW why does all sites show me my IP address? Is that a new trend or something?
Reply With Quote
  #37  
Old 04-14-2002, 03:37 PM
wooolF[RM]'s Avatar
wooolF[RM] wooolF[RM] is offline
 
Join Date: Jan 2002
Posts: 524
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

]well... I was script kiddie once...
I have this page about 5 years now and this IP thingy was there from the start So... maybe they ripped it from my page

BTW, thanx for comments
Reply With Quote
  #38  
Old 04-14-2002, 05:12 PM
NTLDR's Avatar
NTLDR NTLDR is offline
Coder
 
Join Date: Apr 2002
Location: Bristol, UK
Posts: 3,644
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice design and layout there nakkid

I look forward to seeing the forumbits, a great clean not overly complicated, yet impressive design. Good work
Reply With Quote
  #39  
Old 04-14-2002, 09:17 PM
TECK's Avatar
TECK TECK is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 4,182
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by FireFly
nakkid, bear in mind that if you update the -1 templateset, all your templates will be deleted when you upgrade. If you don't touch that set, never mind.
i always edit vbulletin.style.. every time i add a new template to that file, i run this script that i added in template.php:
PHP Code:
// ###################### Start add masterset #######################
if ($action=="addmaster") {

  
doformheader("template","insertmaster");
  
maketableheader("Add master set");
  
//makeinputcode("File Name (.style)","filename");
  
makedescription("Adding the master set will not delete the custom templates.");
  
doformfooter("Save");
}

// ###################### Start insert masterset #######################
if ($HTTP_POST_VARS['action']=="insertmaster") {

  
$filename="./vbulletin.style";

  if (
file_exists($filename)==0) {
      
$styletext="";
  } else {
      
$filesize=filesize($filename);
      
$filenum=fopen($filename,"r");
      
$styletext=fread($filenum,$filesize);
      
fclose($filenum);
  }

  if (
$styletext=="") {
    echo 
"<p>Please ensure that the <b>$filename</b> file exists in the current directory.</p>";
    exit;
  }

  
$DB_site->query("DELETE FROM template WHERE templatesetid=-1 AND title<>'options'");
  
$DB_site->query("DELETE FROM replacement WHERE replacementsetid=-1");

  
$stylebits=explode("|||",$styletext);

  list(
$devnul,$styleversion)=each($stylebits);
  list(
$devnul,$style[title])=each($stylebits);
  list(
$devnul,$replacementset[title])=each($stylebits);
  list(
$devnul,$templateset[title])=each($stylebits);

  
// installing master set
  
$style[styleid]=-1;
  
$style[userselect]=0;
  
$style[replacementsetid]=-1;
  
$style[templatesetid]=-1;

  
// get number of replacements and templates
  
list($devnull,$numreplacements)=each($stylebits);
  list(
$devnull,$numtemplates)=each($stylebits);

  
$counter=0;
  while (
$counter++<$numreplacements) {
      list(
$devnull,$findword)=each($stylebits);
      list(
$devnull,$replaceword)=each($stylebits);
      if (
trim($findword)!="") {
          
$DB_site->query("INSERT INTO replacement (replacementsetid,findword,replaceword) VALUES ($style[replacementsetid],'".addslashes($findword)."','".addslashes($replaceword)."')");
      }
  }

  
$counter=0;
  while (
$counter++<$numtemplates) {
      list(
$devnull,$title)=each($stylebits);
      list(
$devnull,$template)=each($stylebits);
      if (
trim($title)!="") {
          
$DB_site->query("INSERT INTO template (templatesetid,title,template) VALUES ($style[templatesetid],'".addslashes($title)."','".addslashes($template)."')");
      }
  }

  echo 
"<p>Master set added</p>";

if a new upgrade comes, i simply do a compare with araxis.. between the original 225 template set (not the one i always update) and 226 for example. in this way i see exacly what changes were done in templates.

i think this is the most elegant solution for keeping updated your templates with the new code.
Reply With Quote
  #40  
Old 04-15-2002, 11:20 AM
Admin's Avatar
Admin Admin is offline
Coder
 
Join Date: Oct 2023
Location: Server
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

vbulletin.style can't really be compared since the tepmlates in it are not ordered...
Reply With Quote
  #41  
Old 04-15-2002, 11:28 PM
TECK's Avatar
TECK TECK is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 4,182
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

so you tell me that the templates in 224 and 225 are not in the same order?? wierd. i thought all they do the devs is to edit that file.. or add at the bottom the code..
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:51 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07460 seconds
  • Memory Usage 2,366KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete