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.
Posted in Uncategorized |
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
Posted in Uncategorized |
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
Posted in Uncategorized |
February 11th, 2010 by ayad
telnet 124.217.243.201 21
Posted in Uncategorized |
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
Posted in Uncategorized |
February 11th, 2010 by ayad
- Enable IMAP in your Gmail settings.
- Open the Start menu and select Programs > Messaging > New E-mail Account.
- 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.
- Uncheck the box that asks to get settings automatically from the Internet and select Next.
- Select Internet e-mail as your email provider in the drop-down menu.
- Enter your name as you want it to appear in sent emails.
- Enter a descriptive name for the email account and select Next.
- Enter ‘imap.gmail.com’ in the Incoming Mail Server field.
- Select IMAP4 as the Account type from the drop-down menu and select Next.
- Enter your full email address (including ‘@gmail.com’ or ‘@your_domain.com’) and password.
- Select Next.
- Enter ‘smtp.gmail.com’ in the Outgoing (SMTP) Mail Server field.
- Make sure that the Outgoing server requires authentication box is checked.
- Select the Advanced Server Settings link.
- Make sure that the Require SSL box is checked for both incoming and outgoing emails.
- Select The Internet as the network connection from the drop-down menu.
- Select Done and then Next.
- Select how often you want your phone to send/receive emails from the drop-down menu.
- For more download options, select the Review all download settings link.
- Select Finish.
- Check our recommended client settings, and adjust your client’s settings as needed.
References
https://mail.google.com/support/bin/answer.py?answer=78886
Posted in Uncategorized |
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.
Posted in Uncategorized |
February 6th, 2010 by ayad
restore mysql -u user -p database < lbesql
backup mysql -u user -p database > lbesql
Posted in Uncategorized |
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
Posted in Uncategorized |
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.
Posted in Uncategorized |