Eric's Mad Scientist Lab
- Eric
- Senior Veteran
- Posts: 1540
- Joined: Thu Feb 10, 2011 5:30 am
- Favorite Aircraft: Super Hornet
- Location: Chicago, Illinois
- Has thanked: 60 times
- Been thanked: 165 times
- Contact:
Eric's Mad Scientist Lab
[test]<f1>F</f1><f2>U</f2><f3>C</f3><f4>K</f4>[/test]
[test][test2]FU[/test2][test3]CK[/test3][/test]
- Eric
- Senior Veteran
- Posts: 1540
- Joined: Thu Feb 10, 2011 5:30 am
- Favorite Aircraft: Super Hornet
- Location: Chicago, Illinois
- Has thanked: 60 times
- Been thanked: 165 times
- Contact:
Re: erict15's mad web dev lab
Code: Select all
double d;
- Eric
- Senior Veteran
- Posts: 1540
- Joined: Thu Feb 10, 2011 5:30 am
- Favorite Aircraft: Super Hornet
- Location: Chicago, Illinois
- Has thanked: 60 times
- Been thanked: 165 times
- Contact:
Re: erict15's mad web dev lab
EDIT: sorry for taking up the first 3 pages of the admin log...


- Eric
- Senior Veteran
- Posts: 1540
- Joined: Thu Feb 10, 2011 5:30 am
- Favorite Aircraft: Super Hornet
- Location: Chicago, Illinois
- Has thanked: 60 times
- Been thanked: 165 times
- Contact:
Re: erict15's mad web dev lab

- Eric
- Senior Veteran
- Posts: 1540
- Joined: Thu Feb 10, 2011 5:30 am
- Favorite Aircraft: Super Hornet
- Location: Chicago, Illinois
- Has thanked: 60 times
- Been thanked: 165 times
- Contact:
Re: erict15's mad web dev lab

Used this to run a YS server on a linux machine at school. WIN.
Now who wants to be the server in the diagram? my internetz fails
- vincent
- Contributor
- Posts: 202
- Joined: Wed Feb 02, 2011 7:31 pm
- Favorite Aircraft: virtual ones
- Location: Toulouse, France
- Has thanked: 1 time
- Been thanked: 25 times
- Contact:
Re: erict15's mad web dev lab
I don't think it's a good idea:erict15 wrote:
Used this to run a YS server on a linux machine at school. WIN.
Now who wants to be the server in the diagram? my internetz fails
1) the ssh tunnel will introduce will lot of lags, ant not only because of the encryption
2) the school network admin will notice it
3) why not hosting the YSFlight server on the "server" itself depicted in the picture in the bottom? SSH tunnel or not, you always need a server somewhere.
- Eric
- Senior Veteran
- Posts: 1540
- Joined: Thu Feb 10, 2011 5:30 am
- Favorite Aircraft: Super Hornet
- Location: Chicago, Illinois
- Has thanked: 60 times
- Been thanked: 165 times
- Contact:
Re: erict15's mad web dev lab
2. already taken care of, i run the server
3. I do not want to be taking up CPU/memory resources, and since some servers I am thinking of using ban running game servers.
- Flake
- VFA-49
- Posts: 4358
- Joined: Thu Feb 10, 2011 8:47 pm
- Favorite Aircraft: Boeing F/A-18A
- Location: Australia
- OS: Windows 10 (x64)
- Has thanked: 838 times
- Been thanked: 1248 times
- Contact:
Re: erict15's mad web dev lab
We used SSH, but hid that inside HTTPS. I didn't make it, my heaps mad bro friend did.
See, HTTPS still runs on port 80/8080. Since most schools just block all but 80, this still worked. THAT would add lag though i'm very sure.
- Eric
- Senior Veteran
- Posts: 1540
- Joined: Thu Feb 10, 2011 5:30 am
- Favorite Aircraft: Super Hornet
- Location: Chicago, Illinois
- Has thanked: 60 times
- Been thanked: 165 times
- Contact:
Re: erict15's mad web dev lab
- Eric
- Senior Veteran
- Posts: 1540
- Joined: Thu Feb 10, 2011 5:30 am
- Favorite Aircraft: Super Hornet
- Location: Chicago, Illinois
- Has thanked: 60 times
- Been thanked: 165 times
- Contact:
Re: erict15's mad web dev lab
Code: Select all
693
//Support Ticket System MOD Beginn
if ($post_data['enable_sts'] == TRUE && ($mode == 'post'))
{
$user->add_lang('mods/ticket');
if ($forum_id==74)
{
$post_data['post_subject'] = utf8_normalize_nfc(request_var('title', '', true ));
$title = utf8_normalize_nfc(request_var('title', '', true ));
$ysvers = utf8_normalize_nfc(request_var('ysvers', '', true ));
$bugimg = utf8_normalize_nfc(request_var('bugimg', '', true ));
}
else
{
$post_data['post_subject'] = utf8_normalize_nfc(request_var('modname', '', true));
$modname = utf8_normalize_nfc(request_var('modname', '', true ));
$download = utf8_normalize_nfc(request_var('download', '', true ));
$instmod = utf8_normalize_nfc(request_var('instmod', '', true ));
$previmg = utf8_normalize_nfc(request_var('previmg', '', true ));
}
$message = utf8_normalize_nfc(request_var('message', '', true));
global $moddesc;
$moddesc = $message;
$messagetemp = '';
if ($forum_id==74)
{
$messagetemp .= "[bug=" . $title . "]\n";
$messagetemp .= ($bugimg && ($bugimg != 'http://')) ? "[bugimg]" . $bugimg . "[/bugimg]\n" : '';
$messagetemp .= "[bugdesc]\n";
$messagetemp .= $message . "\n";
$messagetemp .= "[/bugdesc]\n";
$messagetemp .= "[/bug]";
}
else
{
$messagetemp .= "[mod=" . $modname . "]\n";
$messagetemp .= ($previmg && ($previmg != 'http://')) ? "[previmg]" . $previmg . "[/previmg]\n" : '';
$messagetemp .= "[moddesc=" . $download . "]\n";
$messagetemp .= $message . "\n";
$messagetemp .= "[/moddesc]\n";
$messagetemp .= "[instmod]" . $instmod . "[/instmod]\n";
$messagetemp .= "[/mod]";
}
$message_parser->message = $messagetemp;
}
//Support Ticket System MOD END
1478
//Support Ticket System MOD Beginn
'MESSAGE' => (isset($moddesc) && $moddesc != '') ? $moddesc : $post_data['post_text'],
//Support Ticket System MOD END
1547
//Support Ticket System MOD Beginn
'SUPPORT_STS' => ($post_data['enable_sts'] == true && ($mode == 'post')) ? true : false,
'STS_MODNAME' => utf8_normalize_nfc(request_var('modname', '', true )),
'STS_DOWNLOAD' => utf8_normalize_nfc(request_var('download', '', true )),
'STS_INSTMOD' => utf8_normalize_nfc(request_var('instmod', '', true )),
'STS_PREVIMG' => utf8_normalize_nfc(request_var('previmg', '', true )),
'STS2_TITLE' => utf8_normalize_nfc(request_var('title', '', true )),
'STS2_BUGIMG' => utf8_normalize_nfc(request_var('bugimg', '', true )),
'STS2_YSVERS' => utf8_normalize_nfc(request_var('ysvers', '', true )),
//Support Ticket System MOD End
- Flake
- VFA-49
- Posts: 4358
- Joined: Thu Feb 10, 2011 8:47 pm
- Favorite Aircraft: Boeing F/A-18A
- Location: Australia
- OS: Windows 10 (x64)
- Has thanked: 838 times
- Been thanked: 1248 times
- Contact:
Re: erict15's mad web dev lab
I'll set it up if you can install it.
PathAuto is already running fine.
Cheers broseph.
- Flake
- VFA-49
- Posts: 4358
- Joined: Thu Feb 10, 2011 8:47 pm
- Favorite Aircraft: Boeing F/A-18A
- Location: Australia
- OS: Windows 10 (x64)
- Has thanked: 838 times
- Been thanked: 1248 times
- Contact:
Re: erict15's mad web dev lab

- Flake
- VFA-49
- Posts: 4358
- Joined: Thu Feb 10, 2011 8:47 pm
- Favorite Aircraft: Boeing F/A-18A
- Location: Australia
- OS: Windows 10 (x64)
- Has thanked: 838 times
- Been thanked: 1248 times
- Contact:
Re: erict15's mad web dev lab

http://ysfhq.com/drupal6/content/staff-complaint-form
- Martin-Dutchie
- Contributor
- Posts: 482
- Joined: Sun Feb 06, 2011 5:13 pm
- Favorite Aircraft: F-20A Tigershark
- Location: Somewhere between the dykes
- Has thanked: 55 times
- Been thanked: 38 times
Re: erict15's mad web dev lab
Code: Select all
Fatal error: Unsupported operand types in /home/content/19/4813419/html/drupal6/sites/all/modules/rules/rules/modules/rules.events.inc on line 55
- Martin-Dutchie
- Contributor
- Posts: 482
- Joined: Sun Feb 06, 2011 5:13 pm
- Favorite Aircraft: F-20A Tigershark
- Location: Somewhere between the dykes
- Has thanked: 55 times
- Been thanked: 38 times
- Eric
- Senior Veteran
- Posts: 1540
- Joined: Thu Feb 10, 2011 5:30 am
- Favorite Aircraft: Super Hornet
- Location: Chicago, Illinois
- Has thanked: 60 times
- Been thanked: 165 times
- Contact:
Re: erict15's mad web dev lab
Also: http://ysfhq.com/drupal6/content/nafcnaa-pack
aww yea.

Who is online
Users browsing this forum: No registered users and 5 guests