buy tb500

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

February 12th, 2010 by ayad

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

February 11th, 2010 by ayad

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

February 11th, 2010 by ayad

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

February 11th, 2010 by ayad

telnet 124.217.243.201 21

IIS7 installation

February 11th, 2010 by ayad

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

February 11th, 2010 by ayad
  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

February 11th, 2010 by ayad

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.

restore and backup mysql database for linux server by command

February 6th, 2010 by ayad
restore  mysql -u user -p database < lbesql

backup  mysql -u user -p database > lbesql

Your Callback URL is not accessible! (X-cart / Google Checkout)

February 3rd, 2010 by ayad

With Google Checkout and X-cart 4.1.8, a client of ours had this error:

Your Callback URL is not accessible!

Make sure you have a valid SSL certificate installed. Also note that Google Checkout does not accept SSL certicates from certain issuers. Contact Google Checkout support to make sure your SSL certificate can be accepted.

Another reason for the problem may be PHP on your server running in CGI mode. Refer to the manual for instructions on how to resolve the issue.


The SSL was fine, and the server mode was also the same as other users who had X-cart and Google Checkout. Our user fixed the issue by adding the following lines to his .htaccess file, and hopefully this solution will help you too:

RewriteEngine on
RewriteRule .* – [E=REMOTE_USER:%{HTTP:Authorization},L]

If that does not help, try searching the x-cart forums or contacting x-cart, but so long as your server has mod_rewrite installed, the checkout should work fine from there.

References

=======

http://billing.handsonwebhosting.com/knowledgebase.php?action=displayarticle&id=129

brwose website instead of siteprivew

February 3rd, 2010 by ayad

there is a way to browse website without using DNS, instead of site-preview, but  you need to borwse it inside the server, this is only for windows server, i have tired it in winows server 2008

you need to follow the below steps

C:/Windows/system32/driver/etc/host

then you need to add inside host server ip and the domain

for example

124.217.226.210    alzwea.com

then you will be able to browse the website in side the server, but you can not browse it out side of the server.

Thank you.