English   German
  #1  
Old 08-03-2003, 01:28
Todesengel
Guest
 
Posts: n/a
webpost2 help, doesent show servers.

i got everything working. But it doesent list any servers. I have been waiting for the past 2 hours. And nothing. I set up everything right according to the directions. Any ideas?
Reply With Quote
  #2  
Old 08-03-2003, 15:24
ellis ellis is offline
-= TeamSpeak User =-
 
Join Date: Mar 2003
Location: Sweden
Posts: 2
ellis is on a distinguished road
http://forum.teamspeak.com/show...&threadid=3817 - se that...
Reply With Quote
  #3  
Old 08-03-2003, 19:39
[GR] Cool K [GR] Cool K is offline
-= TeamSpeak Lover =-
 
Join Date: Jan 2003
Location: Denmark
Posts: 47
[GR] Cool K is on a distinguished road
Send a message via ICQ to [GR] Cool K
Set global variables in your php.ini file to on and your webpost will rock the world!



Reply With Quote
  #4  
Old 06-04-2003, 23:35
dance dance is offline
-= TeamSpeak User =-
 
Join Date: Apr 2003
Location: NC, USA
Posts: 8
dance is on a distinguished road
Where do i find the php.ini for those global variables?
Reply With Quote
  #5  
Old 06-04-2003, 23:40
[GR] Cool K [GR] Cool K is offline
-= TeamSpeak Lover =-
 
Join Date: Jan 2003
Location: Denmark
Posts: 47
[GR] Cool K is on a distinguished road
Send a message via ICQ to [GR] Cool K
Should be in your php folder or your root folder or your windows folder...

Do a search for php.ini and you're rolling...
Reply With Quote
  #6  
Old 07-04-2003, 00:13
dance dance is offline
-= TeamSpeak User =-
 
Join Date: Apr 2003
Location: NC, USA
Posts: 8
dance is on a distinguished road
Nope i search couldnt find that file anywhere : (

I searched TS2 directory where TS2 is hosted
I serached Webpost2 directory where website is hosted
I serached PHPNuke root directory where website is hosted

It works on the TS2 host site "XoO Server" http://www.cyberseals.net/portal/ts/listing.php

But it just dont work on my site! http://www.xenforcers.com/ts2/listing.php

I even tried stopping and restarting server but something happend it stopped fine but the script file was missing so i uploaded a copy i had saved but then i tried restarting it, it restared but with an error and it produced another pid file and i changed my TCPQueryPort= info to reflect the pid number.

Last edited by dance; 07-04-2003 at 00:44.
Reply With Quote
  #7  
Old 07-04-2003, 07:03
[GR] Cool K [GR] Cool K is offline
-= TeamSpeak Lover =-
 
Join Date: Jan 2003
Location: Denmark
Posts: 47
[GR] Cool K is on a distinguished road
Send a message via ICQ to [GR] Cool K
Well - I've just made a search on my server - just to be sure - and as I said before....:

Look in the WINNT folder (if you're running a Win2k server :P)

Sorry - can't take you any further
Reply With Quote
  #8  
Old 07-04-2003, 18:12
dance dance is offline
-= TeamSpeak User =-
 
Join Date: Apr 2003
Location: NC, USA
Posts: 8
dance is on a distinguished road
Yeah mine is on a linux server

Thanks for the help
Reply With Quote
  #9  
Old 07-04-2003, 23:57
Chew Chew is offline
-= TeamSpeak User =-
 
Join Date: Apr 2003
Location: Cleveland, OH USA
Posts: 5
Chew is on a distinguished road
Send a message via ICQ to Chew Send a message via AIM to Chew Send a message via Yahoo to Chew
on a linux server, your PHP.INI file is in your /etc/ folder

Chew
Reply With Quote
  #10  
Old 08-04-2003, 03:46
dance dance is offline
-= TeamSpeak User =-
 
Join Date: Apr 2003
Location: NC, USA
Posts: 8
dance is on a distinguished road
im refering to my host server is using linux

i only have html directory access
Reply With Quote
  #11  
Old 08-04-2003, 13:32
Chew Chew is offline
-= TeamSpeak User =-
 
Join Date: Apr 2003
Location: Cleveland, OH USA
Posts: 5
Chew is on a distinguished road
Send a message via ICQ to Chew Send a message via AIM to Chew Send a message via Yahoo to Chew
Then it's very doubtful that you will be able to sway them into turning the global variables on.

I administer a few larger linux boxes and know that it's not the best practice to enable them.

Chew
Reply With Quote
  #12  
Old 19-06-2003, 23:03
Zero-Point's Avatar
Zero-Point Zero-Point is offline
-= TeamSpeak Addict =-
 
Join Date: Oct 2002
Location: California
Posts: 256
Zero-Point is on a distinguished road
I'm having the same problem not getting webpost to post to my site. I have looked for "global variables" and variations of it throught my php.ini file without luck.

Is this the first variable "register_globals" in php.ini?

0.
Reply With Quote
  #13  
Old 20-06-2003, 09:41
[GR] Cool K [GR] Cool K is offline
-= TeamSpeak Lover =-
 
Join Date: Jan 2003
Location: Denmark
Posts: 47
[GR] Cool K is on a distinguished road
Send a message via ICQ to [GR] Cool K
Exclamation

In my php.ini file it looks like this...
(...I hope it helps ya' )

;;;;;;;;;;;;;;;;;
; Data Handling ;
;;;;;;;;;;;;;;;;;
;
; Note - track_vars is ALWAYS enabled as of PHP 4.0.3

; The separator used in PHP generated URLs to separate arguments.
; Default is "&".
;arg_separator.output = "&"

; List of separator(s) used by PHP to parse input URLs into variables.
; Default is "&".
; NOTE: Every character in this directive is considered as separator!
;arg_separator.input = ";&"

; This directive describes the order in which PHP registers GET, POST, Cookie,
; Environment and Built-in variables (G, P, C, E & S respectively, often
; referred to as EGPCS or GPC). Registration is done from left to right, newer
; values override older values.
variables_order = "EGPCS"

; Whether or not to register the EGPCS variables as global variables. You may
; want to turn this off if you don't want to clutter your scripts' global scope
; with user data. This makes most sense when coupled with track_vars - in which
; case you can access all of the GPC variables through the $HTTP_*_VARS[],
; variables.
;
; You should do your best to write your scripts so that they do not require
; register_globals to be on; Using form variables as globals can easily lead
; to possible security problems, if the code is not very well thought of.
register_globals = on
Reply With Quote
  #14  
Old 20-06-2003, 19:43
Zero-Point's Avatar
Zero-Point Zero-Point is offline
-= TeamSpeak Addict =-
 
Join Date: Oct 2002
Location: California
Posts: 256
Zero-Point is on a distinguished road
Thanks [GR] Cool K.

Yes, that is what I thought it was. Unfortunately, this doesn't help with showing my server.

Also, the php.ini states multiple times that turning on global variables causes a security risk. Is webpost or a future version not going to need this?

Thanks,

0.
Reply With Quote
  #15  
Old 20-06-2003, 19:53
[GR] Cool K [GR] Cool K is offline
-= TeamSpeak Lover =-
 
Join Date: Jan 2003
Location: Denmark
Posts: 47
[GR] Cool K is on a distinguished road
Send a message via ICQ to [GR] Cool K
NP Zero-Point...

I'm actually not sure what kind of risk having the global variables set to on...

Somebody might be able to explain it to us - wouldn't that be nice

Anyway - I think I've seen somewhere that with the new webpost global variables does not need to be set to ON - but I'm not completely sure about this...
I'm not hosting the webpost script anymore (rented a server instead) - so I don't have to worry about the risk and other stuff anymore

Feel free to point your server to my webpost for testing purposes... Hit it at http://www.b-more.dk/ts2/webpost.php
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

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 Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 22:43.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Add to Bookmarks   |   Printview   |   Contact Us   |   Legal Notices