ISO Image
Creator
Posted on: Aug 3 2006, 06:42 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
Forum: Suggestions or Problems
· Post Preview: #60337
· Replies: 1
· Views: 1,262
Posted on: Aug 3 2006, 06:41 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
You are free to use one of the provided images if you desire rather than the text.
Forum: Suggestions or Problems
· Post Preview: #60336
· Replies: 1
· Views: 1,153
Posted on: May 15 2006, 06:07 PM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
![]()
Forum: Site News
· Post Preview: #59937
· Replies: 21
· Views: 8,068
Posted on: Apr 30 2006, 09:28 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
![]()
Forum: New Members
· Post Preview: #59858
· Replies: 1
· Views: 697
Posted on: Mar 16 2006, 07:02 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
Forum: Other Customizations
· Post Preview: #59737
· Replies: 2
· Views: 3,346
Posted on: Mar 16 2006, 06:52 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
Forum: XP Login Screens
· Post Preview: #59736
· Replies: 12
· Views: 12,059
Posted on: Mar 5 2006, 09:25 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
Please do NOT click those links, and delete the emails immediately.
We are working to protect our members against the actions this user apparently took.
Thank you!
Forum: Site News
· Post Preview: #59693
· Replies: 21
· Views: 8,068
Posted on: Mar 5 2006, 09:12 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
I just got thee same emails and I assure you we did not send them. It appears our admin control panel was hacked. I'll post a news announcement shortly and remove that link.
Sorry for the troubles. ![]()
Forum: Suggestions or Problems
· Post Preview: #59692
· Replies: 4
· Views: 1,874
Posted on: Feb 6 2006, 08:25 PM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
Forum: PHP, Perl, ASP, and Javascipt
· Post Preview: #59596
· Replies: 16
· Views: 4,866
Posted on: Feb 6 2006, 08:24 PM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
Forum: PHP, Perl, ASP, and Javascipt
· Post Preview: #59595
· Replies: 5
· Views: 2,259
Posted on: Feb 6 2006, 08:21 PM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
![]()
Welcome to the site!
Forum: New Members
· Post Preview: #59594
· Replies: 2
· Views: 1,076
Posted on: Feb 6 2006, 08:21 PM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
![]()
Firstly, replace backticks ` - they're used in XSS attacks.
Replace hex entities, they are almost never used for valid reasons, so assume if you see them they are XSS attacks. By hex entities, I mean like
k
Yes, you can do html entities that way, and IE parses them....
Also, any characters that would ever be used for bbcode should probably get replaced, or they can break bbcode.
i.e. [ ] | ' " ;
and so on.
It's very hard to say the right combination. Just be careful of what you DO allow...
Forum: PHP, Perl, ASP, and Javascipt
· Post Preview: #59593
· Replies: 2
· Views: 876
Posted on: Feb 6 2006, 08:18 PM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
![]()
Forum: XP Login Screens Help
· Post Preview: #59592
· Replies: 7
· Views: 2,463
Posted on: Feb 6 2006, 08:16 PM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
it only SHOWS users that have been active in the last 15 minutes (settable in the ACP).
it DELETES users who haven't been active in over an hour (when the task runs).
My recommendation = put into your configuration settings for both.
Then, anyone you give/sell this to, can't really complain because they have the control. Something like:
Session: Time of inactivity before the user will not be shown as 'Online'
Session: Time of inactivity before the user's session will be deleted completely
Forum: PHP, Perl, ASP, and Javascipt
· Post Preview: #59591
· Replies: 2
· Views: 832
Posted on: Jan 10 2006, 07:31 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
![]()
Forum: New Members
· Post Preview: #59437
· Replies: 1
· Views: 725
Posted on: Jan 10 2006, 07:30 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
You wouldn't really be replacing a function in the skin file, but rather just generating a new file with the most up to date content.
XML with PHP is trickier than I thought originally, but once you get the hang of it it's not too bad. ![]()
The & symbol forces a reference of a variable, array, or object rather than copying it.
If you do
$test = $somevar;
then $somevar is copied over to test. This means changes to either one do not affect the other. If you do this instead
$test =& $somevar;
(or $test = &$somevar; - the & can be against the = sign or the variable or have a space between either)
then you are making $test a reference of $somevar. This uses less memory, however if you edit $test, it edits $somevar as well. This can be desirable at times. You want to use references when possible because it uses a LOT less memory to make a reference to something than to actually copy it over to a new variable. This is especially true for objects.
Forum: PHP, Perl, ASP, and Javascipt
· Post Preview: #59436
· Replies: 8
· Views: 1,542
Posted on: Jan 7 2006, 07:33 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
![]()
Forum: Other Customizations
· Post Preview: #59427
· Replies: 5
· Views: 9,194
Posted on: Jan 7 2006, 07:32 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
![]()
Forum: Other Customizations
· Post Preview: #59426
· Replies: 2
· Views: 7,556
Posted on: Jan 7 2006, 07:29 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
You use reshacker for that step.
Forum: XP Bootscreens
· Post Preview: #59425
· Replies: 6
· Views: 11,431
Posted on: Jan 7 2006, 07:26 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
To use Logon Loader just install it and point it to the directory where your logons are. Doesn't matter if you install it before or after you download the logon screens. ![]()
Forum: XP Login Screens
· Post Preview: #59424
· Replies: 12
· Views: 12,059
Posted on: Jan 7 2006, 07:21 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
![]()
You should output everything after all script execution is done. Not during shutdown (if you are using register_shutdown_func for anything) of course, but after everything else in your script is done.
Best bet I've found is to do this at the end of each of your source files like IPB. This allows you to process anything you need to process in your source files and then output it, or not output anything in the case of a redirection. You could put the output call in your index file if you wanted though, as it would essentially work the same.
<<<NAME
is the same one you use with the
NAME;
call, it's fine. You can put anything you want, those two lines just have to match. The traditional usage though, is the letter o (stands for End of Function).
I'm not entirely sure what you mean, but if you mean pull content from one function, then overwrite that content rather than append it, what you should do is when this *could* happen, save the content of your output to a different variable temporarily, and then when you have decided you don't need to overwrite it, THEN assign it to your main output variable. Like this
$temp_output = $skin->templates['global']->whatever_func();
//you've decided to overwrite it here
$temp_output = $skin->templates['global']->diff_func();
// No more need to overwrite it
$func->output .= $temp_output;
All the @ symbol does is repress warnings. It doesn't repress fatal errors or anything like that, but it will stop a warning from displaying on the screen. ![]()
Forum: PHP, Perl, ASP, and Javascipt
· Post Preview: #59423
· Replies: 8
· Views: 1,542
Posted on: Jan 7 2006, 07:06 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
![]()
It also kind of helps if you give more than 5 minutes for an answer. ![]()
Forum: Suggestions or Problems
· Post Preview: #59421
· Replies: 3
· Views: 1,179
Posted on: Dec 31 2005, 08:34 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
Forum: Suggestions or Problems
· Post Preview: #59394
· Replies: 3
· Views: 1,321
Posted on: Dec 31 2005, 08:34 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
Forum: Suggestions or Problems
· Post Preview: #59393
· Replies: 6
· Views: 2,165
Posted on: Dec 31 2005, 08:32 AM
![]()
Administrator
![]()
Group: Admin
Posts: 10,302
Joined: 9-February 03
From: Jacksonville, FL
Member No.: 1
Forum: Suggestions or Problems
· Post Preview: #59392
· Replies: 43
· Views: 3,366
New Replies
No New Replies
Hot Topic (New)
Hot Topic (No New)
Poll (New)
Poll (No New)
Locked Topic
Moved Topic
Lo-Fi Version
Time is now: 19th March 2010 - 10:02 AM
![]()
Webber Enhanced skin created by Im4eversmart of RuneHQ.