Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions

Reply
 
Thread Tools Display Modes
  #1  
Old 05-19-2002, 03:47 PM
SloppyGoat's Avatar
SloppyGoat SloppyGoat is offline
 
Join Date: Feb 2002
Posts: 339
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default IIS Help

I've noticed there are no forums that have anything about server configs or anything. Does this mean any questions that don't fit under the description will be accepted with less than enthusiasm? :nervous: Just curious....I'm trying to figure out a few IIS errors, and don't seem to be getting any replies from vB.com. I just figure there might be some here who have IIS knowledge, but I don't want to be the idiot who posts under the wrong topic. :laugh:

BTW, I like the board.
Reply With Quote
  #2  
Old 05-19-2002, 06:29 PM
NTLDR's Avatar
NTLDR NTLDR is offline
Coder
 
Join Date: Apr 2002
Location: Bristol, UK
Posts: 3,644
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have some IIS (5.0, 5.1, 6.0) knowlage, I run my test board under IIS with PHP 4.2.0.

What are the problems your having? I can see if I can help.

[EDIT]
After taking alook around I'm guessing that your still not a licenced user (I could be wrong here, my appolgies if I am, perhaps a mod could let us know?), which is why you won't be getting any help.

Also you only posted your problems today, give people time, aslo I think they should be very easy to solve
[/EDIT]
Reply With Quote
  #3  
Old 05-19-2002, 11:06 PM
SloppyGoat's Avatar
SloppyGoat SloppyGoat is offline
 
Join Date: Feb 2002
Posts: 339
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, I am a licensed user. Otherwise I couldn't post here, right? I'll be glad to provide the info if needed. You have to enter the support forum username, correct? I thought that was how they know. I had to enter it for both forums.

Anyway, here's what's happening....

I've been getting multiple instances of these in my event log lately. I'm running W2K Server/IIS5, PHP 4.1.2 w/gzip on a local dedicated server.

(examples of various but similar errors/warnings)

W3SVC error Event ID 16

The script started from the URL '/tga/showthread.php' with parameters 's=&postid=10575' has not responded within the configured timeout period. The HTTP server is terminating the script.

smtpsvc warning Event ID 4000

Message delivery to the remote domain 'yahoo.com' failed for the following reason: Unable to successfully connect to the remote server.

Do you have any suggestions on what to do about these? They don't seem to be causing any problems, but I'd really love to figure out how to get rid of them.

Also, can you tell me how to prevent hotlinking?

Thanks
Reply With Quote
  #4  
Old 05-20-2002, 11:14 AM
Admin's Avatar
Admin Admin is offline
Coder
 
Join Date: Oct 2023
Location: Server
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You can continue the conversation here...
Reply With Quote
  #5  
Old 05-20-2002, 02:21 PM
NTLDR's Avatar
NTLDR NTLDR is offline
Coder
 
Join Date: Apr 2002
Location: Bristol, UK
Posts: 3,644
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by SloppyGoat
Yes, I am a licensed user. Otherwise I couldn't post here, right?(examples of various but similar errors/warnings)
Please accept my apologgies, but in you said in another post that you were not licenced. And as all registered people can post in the lounge, where this thread started, I can't tell if you were registered or not.

Quote:
W3SVC error Event ID 16

The script started from the URL '/tga/showthread.php' with parameters 's=&postid=10575' has not responded within the configured timeout period. The HTTP server is terminating the script.
I would guess this is happening because the PHP script hasn't executed withing 30 seconds, this can be changed, I'll have a look at where the setting is when I get home.

Quote:
smtpsvc warning Event ID 4000

Message delivery to the remote domain 'yahoo.com' failed for the following reason: Unable to successfully connect to the remote server.
Check that in your php.ini file that your have the SMTP server set as locahost or 127.0.0.1 if the SMTP server is run on the same as IIS.
Reply With Quote
  #6  
Old 05-20-2002, 10:34 PM
SloppyGoat's Avatar
SloppyGoat SloppyGoat is offline
 
Join Date: Feb 2002
Posts: 339
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks FireFly! Yes, I was an evil unlicensed bastard when I first came in here(sorry:nervous, but I did have every intention of buying a lifetime license, which should cover me since birth, eh? To tell you the truth, I never would've purchased vB based on my opinion of vBLite. But once I saw the true power of vB, I was very impressed and more than willing to support the developers of this wonderful BB software.

Anyway, I'm all legal now, as I'd planned originally anyway.

Back to the topic here.....

I have a very simple php.ini, since I really don't know much about it yet. I have the name of my server instead of localhost though. I tried changing it to localhost, but it won't work that way. Does this have something to do with the way I set up mysql?
Here's what I have. Someone said something about setting timings in php.ini? Maybe I need those lines?

; php.ini for PEAR tests
include_path=..
[mail function]
SMTP= server ; for Win32 only
sendmail_from= webmaster@server.com ; for Win32 only
upload_tmp_dir = C:\PHP3\uploadtemp ; temporary directory for HTTP uploaded files (will use system default if not specified)
[Session]
session.save_path= C:\PHP3\sessiondata ; argument passed to save_handler
[PHP]
error_reporting= E_ALL; display all errors, warnings and notices

file_upload=1

extension=php_zlib.dll

extension_dir=C:\winnt\system32

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 60 ; Maximum execution time of each script, in seconds
memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)


Oh yeah, I am running PHP4, I just never changed the folder name, in case you're wondering. And I just added the resource limits recently.
Reply With Quote
  #7  
Old 05-21-2002, 04:11 PM
NTLDR's Avatar
NTLDR NTLDR is offline
Coder
 
Join Date: Apr 2002
Location: Bristol, UK
Posts: 3,644
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by SloppyGoat
Code:
; php.ini for PEAR tests
include_path=..
[mail function]
SMTP= server ; for Win32 only
sendmail_from= webmaster@server.com ; for Win32 only
Oh yeah, I am running PHP4, I just never changed the folder name, in case you're wondering. And I just added the resource limits recently.
Where you have server as shown above, I take it that you actually have localhost or the servers name there and not just server and server.com?

What version of PHP4 is it?
Reply With Quote
  #8  
Old 05-21-2002, 11:31 PM
SloppyGoat's Avatar
SloppyGoat SloppyGoat is offline
 
Join Date: Feb 2002
Posts: 339
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, I have the server's name there. It's php4.1.2. I'm sort of afraid to install the new php. I had some trouble trying to install that version from 4.1.1. I ended up manually installing the newer files. I also had to remove the resource lines I added. That actually made it worse.
Can you give me some tips on how to install the new php4.2 without screwing up? :cross-eyed:
And of course, any advise on these errors and warnings is very much appreciated.

Nevermind about the PHP install. I give up! I've tried time and time again, and the MF never works! No one can seem to tell me anything at vB.com either. So much for support, I guess. :dead:

I'll be happy if I can just get the errors and warnings smoothed out.
Reply With Quote
  #9  
Old 05-23-2002, 03:07 AM
SloppyGoat's Avatar
SloppyGoat SloppyGoat is offline
 
Join Date: Feb 2002
Posts: 339
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

BUMP! :cross-eyed:
Reply With Quote
  #10  
Old 05-23-2002, 11:29 AM
NTLDR's Avatar
NTLDR NTLDR is offline
Coder
 
Join Date: Apr 2002
Location: Bristol, UK
Posts: 3,644
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well I've attached my PHP.INI here, its the one that was created by default by PHP.

I installed PHP 4.2.1 from PHP.NET, slelect the windows installer verion and it will configure IIS for you.
Reply With Quote
Reply

Thread Tools
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 Off

Forum Jump


All times are GMT. The time now is 07:25 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04679 seconds
  • Memory Usage 2,275KB
  • Queries Executed 14 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete