buy tb500

Archive for February, 2010

suspend / unsuspend account in linux command prompt

Saturday, February 13th, 2010

suspend

/scripts/suspendacct username

unsuspend

/scripts/unsuspendacct username

Thank you

Ayad

HTTP Error 500.19 – Internal Server Error Absolute physical path “C:\inetpub\vhosts\f24u.com\httpdocs\myError404.htm” is not allowed in system.webServer/httpErrors section in web.config file. Use relative path instead.

Saturday, February 13th, 2010

if you got the above error,

you need to deleted every thing between <httpErrors>        </httpErrors>

and add this
<httpErrors>

<remove statusCode=”403″ subStatusCode=”-1″ />

<error statusCode=”403″ prefixLanguageFilePath=”” path=”redir.htm” responseMode=”File” />

</httpErrors>

References

http://webbosworld.co.uk/blog/?p=118

HTTP Error 500.22 – Internal Server Error

Friday, February 12th, 2010

run the command below will help to fix this issue

appcmd migrate config “alzwea.com/”

References

http://tobint.com/blog/iis-7-0-error-support/

Exim – retry time not reached for any host after a long failure period

Friday, February 12th, 2010

well i found a fix for it, and given I’m seeing this on 2 servers and what the actual problem turned out to be I know more will see it, or might even be suffering it and just assume all those queued messages are bad…..

SSH into your server under root and run this

iptables -L | more

i found this line under chain OUTPUT

target prot opt source destination ACCEPT tcp — anywhere localhost tcp dpt:smtp REJECT tcp — anywhere anywhere tcp dpt:smtp reject-

to get rid of it i ran these commands

iptables -D OUTPUT 2
iptables -D OUTPUT 1

emailed flowed correctly after that.

what i found out is the SMTP tweak was enabled and was adding that line on startup.

Thanks to lifeisboost on WHT forums for the answer. Absolutely correct. After this my outbound queue cleared out and email works perfect again.

Active Server Pages error ‘ASP 0131’ Disallowed Parent Path /administrator/Index.asp, line 2

Thursday, February 11th, 2010

Just login to the server then go the the domain and select the domain >>asp then enabled parent path

References

http://blogs.iis.net/bills/archive/2007/05/21/tips-for-classic-asp-developers-on-iis7.aspx

nulled script

Thursday, February 11th, 2010

A nulled script is when somebody changes the script to remove the protection implemented by the author of the script. For example, when they remove call homes or registration checks or etc. These scripts are commonly distributed by warez sites and etc shady/illegal sites. Just remember that nulled scripts ARE illegal so don’t use them for production sites!

Ayad Aljbori

FTP TEST

Thursday, February 11th, 2010

telnet 124.217.243.201 21

IIS7 installation

Thursday, February 11th, 2010

Refer to the URLs below

1-  http://www.trainsignaltraining.com/windows-server-2008-iis7/2008-03-21/

2- http://learn.iis.net/page.aspx/28/install-iis-7-on-windows-vista-and-windows-7/

Thank you

AYAD ALJBORI

Mobile Windows 6 email client configration

Thursday, February 11th, 2010
  1. Enable IMAP in your Gmail settings.
  2. Open the Start menu and select Programs > Messaging > New E-mail Account.
  3. Enter your Gmail address (including ‘@gmail.com’) in the E-mail Address field*. Google Apps users, enter your full address in the format ‘username@your_domain.com’*.
    * Windows Mobile 6.1 users: Enter an unintelligible email address (such as ‘g@g’) at this step. This will bypass the automatic configuration for POP access.
  4. Uncheck the box that asks to get settings automatically from the Internet and select Next.
  5. Select Internet e-mail as your email provider in the drop-down menu.
  6. Enter your name as you want it to appear in sent emails.
  7. Enter a descriptive name for the email account and select Next.
  8. Enter ‘imap.gmail.com’ in the Incoming Mail Server field.
  9. Select IMAP4 as the Account type from the drop-down menu and select Next.
  10. Enter your full email address (including ‘@gmail.com’ or ‘@your_domain.com’) and password.
  11. Select Next.
  12. Enter ‘smtp.gmail.com’ in the Outgoing (SMTP) Mail Server field.
  13. Make sure that the Outgoing server requires authentication box is checked.
  14. Select the Advanced Server Settings link.
  15. Make sure that the Require SSL box is checked for both incoming and outgoing emails.
  16. Select The Internet as the network connection from the drop-down menu.
  17. Select Done and then Next.
  18. Select how often you want your phone to send/receive emails from the drop-down menu.
  19. For more download options, select the Review all download settings link.
  20. Select Finish.
  21. Check our recommended client settings, and adjust your client’s settings as needed.

References

https://mail.google.com/support/bin/answer.py?answer=78886

WHM error

Thursday, February 11th, 2010

if you got this error    Internal Server Error        Died at /usr/local/cpanel/Cpanel/Hulk.pm line 92.

that mean server is high load, you can ssh to the server and run this command  top -cd2  then you will be able to see the

cpu process then find which domain that make the server to be high load.

once you find the domain but you are not able to access WHM to suspend the server, so try to stop my sql services, then will be able to go to WHM, then suspend the domain and start my sql services,

service mysql stop

service mysql start.

Thank you.