Go Back   Novahq.net Forum > Novahq.net Specific > News

News News and comment posting for the main page. Use this forum to submit your news.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 09-06-2003, 08:53 PM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,921

Simple Squad Site -- Last Beta

I have posted my final beta script for testing at http://www.panthersden.net/simple/ before the script is released. This is my last test script with the full features enabled before I relase it to the public, please go mess around with this and give opinions, try to break somthing too . If you come across bugs or errors, please tell me! S I can fix them before I relase it! Thanks!
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote
  #2  
Old 09-06-2003, 09:55 PM
EDGE is offline EDGE
EDGE's Avatar

Join Date: Feb 2003
Location: North Carolina
Posts: 7,184

Send a message via ICQ to EDGE Send a message via AIM to EDGE Send a message via Yahoo to EDGE
great, I will need this in a few days.
__________________
Quote:
Voltaire
It is forbidden to kill; therefore all murderers are punished unless they kill in large numbers and to the sound of trumpets.
Reply With Quote
  #3  
Old 09-06-2003, 11:46 PM
Unregistered
Unregistered

Posts: n/a

Hey there, news post links aren't working with just typing in links.
Reply With Quote
  #4  
Old 09-07-2003, 12:51 AM
ßulle† is offline ßulle†
Registered User

Join Date: Sep 2002
Posts: 93

Send a message via ICQ to ßulle†
check it now...i think u need to know html to do it. go edit it and look what i put
__________________
Reply With Quote
  #5  
Old 09-07-2003, 12:53 AM
ßulle† is offline ßulle†
Registered User

Join Date: Sep 2002
Posts: 93

Send a message via ICQ to ßulle†
yeap have to use html..may be another way but thats the only way i know of
__________________
Reply With Quote
  #6  
Old 09-07-2003, 06:14 AM
exclusion is offline exclusion
Registered User

Join Date: Apr 2003
Posts: 511

Send a message via ICQ to exclusion
gj panther
__________________
Reply With Quote
  #7  
Old 09-07-2003, 06:21 AM
[Bz] is offline [Bz]
Registered User

Join Date: Aug 2003
Posts: 75

gr8 site
__________________
Reply With Quote
  #8  
Old 09-07-2003, 06:55 AM
BADDOG is offline BADDOG
resigned

Join Date: Mar 2002
Posts: 7,050

Looks good Panther!

Regards
Reply With Quote
  #9  
Old 09-07-2003, 12:13 PM
Unregistered
Unregistered

Posts: n/a

I know how to use html, but I was under the impression PHP automatically read links.
Reply With Quote
  #10  
Old 09-07-2003, 12:21 PM
Steve is offline Steve
Steve's Avatar
Administrator

Join Date: Sep 2001
Location: 2077
Posts: 21,552

Send a message via ICQ to Steve
i think that can be easily implemented.
php doesnt auto read links but u can make it parse URLs and other stuff like that.
Reply With Quote
  #11  
Old 09-07-2003, 10:16 PM
score is offline score
Registered User

Join Date: Jul 2003
Posts: 669

Send a message via ICQ to score
According to Panther there is no PHP or html needed for the site.
__________________



I know not with what weapons World War III will be fought, but World War IV will be fought with sticks and stones. - Albert Einstein
I tell the truth even w`en I lie. - Al Pacino, Scarface
-
------------------------------

only the good die young
Reply With Quote
  #12  
Old 09-08-2003, 05:37 AM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,921

There isn't any html needed and the php is coded for you, if you want to use html in the news it's upto you.
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote
  #13  
Old 09-08-2003, 05:38 AM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,921

Quote:
Originally posted by Unregistered
I know how to use html, but I was under the impression PHP automatically read links.
Only if you make it so it does, maybe i'll figure it out.
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote
  #14  
Old 09-08-2003, 11:25 AM
Surge is offline Surge
Registered User

Join Date: Jan 2002
Posts: 265

u mean ubb code for the news? Here is an easy function to add that in.

PHP Code:
$message str_replace("[b]""<b>""$message"); 
$message str_replace("[/b]""</b>""$message"); 
$message str_replace("[i]""<i>""$message"); 
$message str_replace("[/i]""</i>""$message"); 
$message str_replace("[u]""<u>""$message"); 
$message str_replace("[/u]""</u>""$message"); 
$message str_replace("[move]""<marquee>""$message"); 
$message str_replace("[/move]""</marquee>""$message");  
$message str_replace("[url]","[<a href=\"",$message);
$message str_replace("[/url]","\" target=\"_blank\">www</a>]",$message);
$message str_replace("[mail]","[<a href=\"mailto:",$message);
$message str_replace("[/mail]","\">@</a>]",$message); 
Replace message with the string used for news posts
__________________
Squad Tag Generator
Take the guessing work out of making you squad tag.
unavailable for re-design
Reply With Quote
  #15  
Old 09-08-2003, 11:33 AM
Surge is offline Surge
Registered User

Join Date: Jan 2002
Posts: 265

oops.. didn't come out right because of ubb code on the forums.. lmao

PHP Code:
$message str_replace("[b ]""<b>""$message"); 
$message str_replace("[/b ]""</b>""$message"); 
$message str_replace("[i ]""<i>""$message"); 
$message str_replace("[/i ]""</i>""$message"); 
$message str_replace("[u ]""<u>""$message"); 
$message str_replace("[/u ]""</u>""$message"); 
$message str_replace("[move]""<marquee>""$message"); 
$message str_replace("[/move]""</marquee>""$message");  
$message str_replace("[url]","[<a href=\"",$message);
$message str_replace("[/url]","\" target=\"_blank\">www</a>]",$message);
$message str_replace("[mail]","[<a href=\"mailto:",$message);
$message str_replace("[/mail]","\">@</a>]",$message); 
Take out the space in [b ] all the way down to [/u ].

If ppl didn't know (I know you do Panter), This is what this code would do...

You type in the code like on these forums. Lets say you want bold text in news post just enter [b ][/b ] tags around your text. Same with underline, italics, email [mail]yourmail@yourmail.com[/mail], url your.com, and there is marquee but I suggest you should take it out especially for news posting.

So theres the code. That's what I use anyways and seems to get the job done just as good
__________________
Squad Tag Generator
Take the guessing work out of making you squad tag.
unavailable for re-design
Reply With Quote
  #16  
Old 09-09-2003, 02:30 PM
CaptTKirk is offline CaptTKirk
Registered User

Join Date: Jun 2003
Posts: 5

Send a message via ICQ to CaptTKirk
Smile How would...

how would you change the site color and put in banners??

would you do that before it got uploaded??

sorry ...i am a newbie to this
__________________
CaptTKirk¡¢²ê! "Looking For New Life Forms To Kill"
Reply With Quote
  #17  
Old 09-09-2003, 04:45 PM
Surge is offline Surge
Registered User

Join Date: Jan 2002
Posts: 265

It's probably set up in a config file where you change your color codes and stuff. Either that or through templates or css
__________________
Squad Tag Generator
Take the guessing work out of making you squad tag.
unavailable for re-design
Reply With Quote
  #18  
Old 09-09-2003, 04:53 PM
Surge is offline Surge
Registered User

Join Date: Jan 2002
Posts: 265

Panther

There is an error in the record admin. When u submit a sshot to a record it dosn't parse the url correctly.

Go here http://www.panthersden.net/simple/?view=record and click on the sshot link.

It's entered in the record as this link
http://doomtroopers.coolfreepages.com/sigs/ibt.gif

but when viewed on the record page it comes out as
http://www.panthersden.net/simple//h...m/sigs/ibt.gif
__________________
Squad Tag Generator
Take the guessing work out of making you squad tag.
unavailable for re-design
Reply With Quote
  #19  
Old 09-09-2003, 05:07 PM
OriasLrG is offline OriasLrG
Registered User

Join Date: Sep 2003
Posts: 33

yo, panther, could I use the simple squad site for my squad website? If i can, I will get back wit u soon. I alerady saw that Team Friction is usin it, so i was wonderin if we could use it. Im a noob at makin websites so if u could do it for us? Psycho is makin us a banner and everything, but if you could make us the webby and I will add everything to it. Thx


Lata
__________________
^^Made by Rage @ ragedesigns2003.vze.com



Reply With Quote
  #20  
Old 09-09-2003, 05:23 PM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,921

Re: How would...

Quote:
Originally posted by CaptTKirk
how would you change the site color and put in banners??
would you do that before it got uploaded??
You can add banners in the settings panel, if you don't have a banner then leave it blank. For now only set styles are avaliable unless you know what your doing, the next version which will follow soon will have a style editer where you can do more with the styles or make your own. I will release 10 more styles soon after this first script is released. I just have to make them.
Quote:
Originally posted by Surge
There is an error in the record admin. When u submit a sshot to a record it dosn't parse the url correctly.
Not an error, you can specify the folder where the screen shot would be or you can take out the value for image folder in the settings panel and use full urls.
Quote:
Originally posted by OriasLrG
yo, panther, could I use the simple squad site for my squad website?
Sure you can, but you have to wait like everyone else is. When you see a news post here that it's up for download you can download it and install it on your server and enjoy.
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
simple squad site MikeCoDBHD Web design and Programming 1 11-29-2004 10:48 PM
simple squad site v1.2 o2 phphq.Net Forums 1 10-03-2004 06:01 AM
Squad Simple Site etc.. decoy Feedback / Novahq.net Support 4 07-02-2004 07:47 PM
simple squad site ICE*IB* Feedback / Novahq.net Support 5 01-21-2004 10:38 AM
NEED A SIMPLE SQUAD SITE...... DoomHazard Web design and Programming 6 05-30-2003 05:39 AM


All times are GMT -5. The time now is 03:48 PM.




Powered by vBulletin®