vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   IRC Manager for MIRC (https://vborg.vbsupport.ru/showthread.php?t=60365)

CHeeKY 01-18-2004 05:16 PM

ok heres my new settings

%ircserver = http://x.x.x.x
%ircfilepath = /forums/irconline.php
%irckey = 11111
%ircchan = #qteam
%ircwait = 60

admincp

Handle #qteam
Server b0rk.uk.quakenet.org



this is the error I get

* /sockwrite: 'dbupdate' not connected (line 2, ircon_rm.txt)

Quote:

this is from ircon_rm.txt

on *:sockopen:dbupdate:{
sockwrite -n $sockname POST %ircfilepath HTTP/1.1
sockwrite -n $sockname User-Agent: mIRC $+ / $+ $version (compatible; MTS Downloader 1.1; Windows $os $+ )
sockwrite -n $sockname Host: %ircserver
sockwrite -n $sockname Connection: close
sockwrite -n $sockname Content-Type: application/x-www-form-urlencoded
sockwrite -n $sockname Content-Length: $len(%sockstring)
sockwrite -n $sockname $crlf
sockwrite -t $sockname %sockstring
any tips?

KISS 01-18-2004 06:16 PM

Quote:

Originally Posted by Velocd
Post in vB code tag what you have in your aliases page, so I can verify it.

Remember, typing manually /ircrefresh and /topicrefresh is good for troubleshooting. Make sure no socket-in-use or other errors show up in your IRC server status window.

Just about any server should be able to receive the socket request, that is, if PORT 80 is open. Most servers have port 80 open for requests, but if all else fails, contact your host to make sure it is.


Okay was told by my server that port 80 is used for only http requests and that for security reasons they cannot devulged any open ports to me. So am I outta luck on this working?

gc1 01-18-2004 07:15 PM

Quote:

Originally Posted by CHeeKY
ok heres my new settings

%ircserver = http://x.x.x.x
%ircfilepath = /forums/irconline.php
%irckey = 11111
%ircchan = #qteam
%ircwait = 60

admincp

Handle #qteam
Server b0rk.uk.quakenet.org



this is the error I get

* /sockwrite: 'dbupdate' not connected (line 2, ircon_rm.txt)



any tips?


This is exactly what I am getting hmm

Velocd 01-18-2004 08:36 PM

@cheeky, gc1:

THe %ircserver value needs to be in www.yoursite.domain format.

Here is my example:

Code:

  %ircserver  = www.animesystem.com
  %ircfilepath = /forums/irconline.php
  %irckey      = 54321
  %ircchan    = #animesystem
  %ircwait    = 120

If you are getting a socket-write error message, it simply means it can't connect to the site.

Make sure the value of %irckey matches $irckey inside irconline.php.

Quote:

This is what I got in the alias tab
Are you getting any errors from mIRC in the server status window?

Velocd 01-18-2004 08:47 PM

Quote:

Okay was told by my server that port 80 is used for only http requests and that for security reasons they cannot devulged any open ports to me. So am I outta luck on this working?
If they're saying port 80 is open for HTTP requests, then this hack should work.

Check for any errors from mIRC in the server status window.

Who is your host, btw?

KISS 01-18-2004 08:53 PM

2mhost.com

They are saying:

Your account will be suspended if you use IRC on our servers without any notifications. We are not allowing the users to use the open ports just because they may cause heavy loads.

So sounds like I am outta luck. Nope no errors inside of MIRC either.

*** Loaded aliases 'C:\Program Files\MIRC\ircon_al.txt'
*** Loaded script 'C:\Program Files\MIRC\ircon_rm.txt'

-
* Timer 1 activated

Thats all I get there.

Also get this on index.php page :

Most users in the chat was 0 on 12-31-1969 at 07:00 PM.

Velocd 01-18-2004 09:05 PM

Quote:

Your account will be suspended if you use IRC on our servers without any notifications. We are not allowing the users to use the open ports just because they may cause heavy loads.
Hmm, well, it's best not tampering with it if your host has threatened to suspend your account. :^/

What you could do is test out PHP sockets on your site and see if port 80 is open for requests. This would just verify that they indeed have blocked out mIRC.

Info on PHP sockets:
http://us4.php.net/manual/en/function.fsockopen.php

PHP.net example:

PHP Code:

<?php
$fp 
fsockopen("www.example.com"80$errno$errstr30);
if (!
$fp) {
   echo 
"$errstr ($errno)<br />\n";
} else {
   
$out "GET / HTTP/1.1\r\n";
   
$out .= "Host: www.example.com\r\n";
   
$out .= "Connection: Close\r\n\r\n";

   
fputs($fp$out);
   while (!
feof($fp)) {
       echo 
fgets($fp128);
   }
   
fclose($fp);
}
?>


KISS 01-18-2004 09:18 PM

* /sockwrite: 'dbupdate' not connected (line 2, ircon_rm.txt)
-
* Timer 1 activated
-
* Timer 2 activated
-
* Timer 3 activated
-
* Timer 4 activated
-
* Timer 5 activated
-
* Timer 6 activated
-
* Timer 1 halted
-
* Timer 2 halted
-
* /sockopen: 'dbupdate' socket in use (line 106, ircon_al.txt)
-
* Timer 3 halted
-
* /sockopen: 'dbupdate' socket in use (line 106, ircon_al.txt)
-
* Timer 4 halted
-
* /sockopen: 'dbupdate' socket in use (line 106, ircon_al.txt)
-
* Timer 5 halted
-
* /sockopen: 'dbupdate' socket in use (line 106, ircon_al.txt)
-
* Timer 6 halted

Velocd 01-18-2004 10:31 PM

Kiss, if you don't care, I could test it out on my mIRC.

All I would have to do is configure the alias script with your values.

If you want to do this, send me a PM with your site domain, the value of %ircfilepath, and then the value of $irckey in irconline.php.

KISS 01-18-2004 10:50 PM

Now I am getting this:

* /sockopen: 'dbupdate' socket in use (line 8, ircon_al.txt)
-
* /sockopen: 'dbupdate' socket in use (line 8, ircon_al.txt)
-
* /sockwrite: 'dbupdate' not connected (line 2, ircon_rm.txt)
-
* /sockopen: 'dbupdate' socket in use (line 8, ircon_al.txt)
-
* /sockopen: 'dbupdate' socket in use (line 8, ircon_al.txt)
-
* /sockwrite: 'dbupdate' not connected (line 2, ircon_rm.txt)


All times are GMT. The time now is 06:54 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03457 seconds
  • Memory Usage 1,755KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete