Fsockopen Failed At Port 25 - Connection Refused
We have a script that run for more day without problem Script connect to port 25
Now we get this:
Warning: fsockopen() [function.fsockopen]: unable to connect to my.domain.com:25 in /home/mydom/public_html/backend/go.php on line 47
Connection refused (111)
View Complete Thread with Replies
Sponsored Links:
Related Forum Messages:
Error In My Dns Server : Rndc: Connect Failed: 127.0.0.1#953: Connection Refused
i got this error : rndc: connect failed: 127.0.0.1#953: connection refused oot@server [/]# rndc status rndc: connect failed: 127.0.0.1#953: connection refused root@server [/]# /etc/init.d/named status rndc: connect failed: 127.0.0.1#953: connection refused named is stopped root@server [/]# /scripts/fixndc Named could not be restarted, any obvious config errors should show up below this line. No critical problems found, will attempt to regenerate keys regardless. warn [fixrndc] /usr/sbin/rndc status failed: rndc: connect failed: 127.0.0.1#953: connection refused Creating rndc.conf Creating /etc/rndc.key warn [fixrndc] /usr/sbin/rndc status failed: rndc: connect failed: 127.0.0.1#953: connection refused Restarting named warn [fixrndc] /usr/sbin/rndc status failed: rndc: connect failed: 127.0.0.1#953: connection refused /scripts/fixrndc failed to fix the rndc key (or named is otherwise broken), please investigate manually and i have try to reload the rndc but i got this error : root@server [~]# rndc reload rndc: connect failed: 127.0.0.1#953: connection refused my vps info : linux os - centos , using cpanel , apache , mysql .... root@server [~]# uname -r 2.6.18-028stab064.7
View Replies!
View Related
WHM Secure Connection Failed
I'm not sure why but this happen when I try to use SSL on WHM.. it just say "Secure Connection Failed" [url] Quote: The certificate is not trusted because it is self signed. The certificate is only valid for luna.ndx2.com But when I try [url]it worked fine. My SSL cert is sign by Comodo CA Limited. From my observation, it looks like my host shared SSL cert is interrupting with WHM.
View Replies!
View Related
Strange Port Connection
I’m running RHEL 3, Apache and Cpanel. When I ran: "netstat –an" I found this in the results: tcp 0 0 11.11.111.229:49158 11.11.111.229:80 ESTABLISHED tcp 0 0 11.11.111.229:49578 11.11.111.229:80 ESTABLISHED If I’m reading this right these two unprivileged ports are open and talking to my privileged http port 80. Does this seem right? Why would these two ports on my machine have a connection. All this attention was sparked by abnormal spikes in load. Now I’m getting paranoid that something may be off even though I’m clean when scanning for rootkits etc…
View Replies!
View Related
Proftpd Timeout Connection Attempt Failed
Currently having a problem with proftpd on my centos plesk 8.1 server. During large uploads, lets say around 10 MB the FTP connection fails within 5 minutes or so saying: "A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond." I have asked for help from my server provider but they have tried and are now unable to help. I currently have the APF firewall in my server. Has anyone experienced this? Below is the APF config file that i currently have & the proftpd config files that i have, if anyone can help it would be really really appreciated APF CONFIG: Code: #!/bin/sh # # APF 0.9.6 [apf@r-fx.org] # # NOTE: This file should be edited with word/line wrapping off, # if your using pico please start it with the -w switch # (e.g: pico -w filename) # ## # [Devel Mode] # !!! Do not leave set to (1) !!! # When set to enabled; 5 minute cronjob is set to stop the firewall. Set # this mode off (0) when firewall determined to be operating as desired. ## # Set firewall cronjob (devel mode) # 1 = enabled / 0 = disabled DEVEL_MODE="0" ## # [Main] ## # The installation path of APF; this can be changed but it has not # been tested what would happen. INSTALL_PATH="/etc/apf" # Untrusted Network interface(s); all traffic on defined interface will be # subject to all firewall rules. This should be your internet exposed # interfaces. Only one interface is accepted for each value. # NOTE: The interfacing structure is being worked towards support of MASQ/NAT IFACE_IN="eth0" IFACE_OUT="eth0" # Trusted Network interface(s); all traffic on defined interface(s) will by-pass # ALL firewall rules, format is white space or comma seperated list. IFACE_TRUSTED="" # Enable virtual network subsystem; creats independent policy ruleset for each # ip on a system (pulls data from 'ip addr list') to /etc/apf/vnet/ip.rules # Template is located in the vnet/ folder for rule files. This feature can # reduce apf start/stop performance and is not recommend for systems with more # than 255 (/24) ip's. [0 = Disabled / 1 = Enabled] SET_VNET="0" # Support Monolithic kernel builds [no LKM's]. This mode of operation is # not really supported and you use at your own risk. SET_MONOKERN="0" # Verifies that all inbound traffic is sourced from a defined local gateway MAC # address. All other traffic that does not match this source MAC address will be # rejected as untrusted traffic. It is quite trivial to forge a MAC address and as # such this feature executes NO default accept policy against this MAC address. VF_LGATE="" # Verifies that the IF and IFACE_TRUSTED interfaces are actually routed (/sbin/route) # to something. If not then chances are APF will not start properly if at all. VF_ROUTE="1" # Verifies that crond service is running when DEVEL_MODE=1; if not then APF will not # try to load as if lock-up occures no cron service to flush firewall VF_CROND="1" # Verifies that the current system uptime is greater than this value before APF # can activate. This is to prevent on-boot lockup issues or delays due to excessive # amount of firewall rules. Value is in seconds; should you wish to disable this # feature, simply set VF_UTIME to 0 value. !! NOTE: APF WILL NOT START ON IT's OWN; # IT WILL EXIT WITH FATAL ERROR BELOW SET UPTIME !! VF_UTIME="0" ## # [Packet Filtering/Handling] ## # How to handle TCP packet filtering? # # RESET (sends a tcp-reset; TCP/IP default) # DROP (drop the packet; stealth ?) # REJECT (reject the packet) TCP_STOP="DROP" # How to handle UDP packet filtering? # # RESET (sends a icmp-port-unreachable; TCP/IP default) # DROP (drop the packet; stealth ?) # REJECT (reject the packet) # PROHIBIT (send an icmp-host-prohibited) UDP_STOP="DROP" # How to handle all other packet filtering? (icmp,arp,igmp) # # DROP (drop the packet) # REJECT (reject the packet) DSTOP="DROP" # The sanity options control the way packets are scrutinized as # they flow through the firewall. The main PKT_SANITY option is a # top level toggle for all SANITY options and provides general # packet flag sanity as a pre-scrub for the other sanity options PKT_SANITY="1" # Block any packets that do not conform as VALID; this feature # is safe for most but some may experience protocol issues with # broken remote clients PKT_SANITY_INV="0"
View Replies!
View Related
Secure Connection Failed :: Error Code: Ssl_error_rx_record_too_long
An error occurred during a connection to site.com. SSL received a record that exceeded the maximum permissible length. (Error code: ssl_error_rx_record_too_long) The page you are trying to view can not be shown because the authenticity of the received data could not be verified. I'm not sure on how to fix this. Running CPanel. I can access WHM/CPanel fine on SSL from the main IP. Just not any of the sites or CPanel from the other IPs.
View Replies!
View Related
Cpsrvd Failed @ ... Failure Reason: Unable To Connect To Port 2086
I have tried everything I know (I know not much) I have rebooted it multiple times. I have terminated lots of account and now I have only 2 or three accounts. I have removed all the fishy scripts. Done everything I can. But it just becomes un responsive within a minute of re booting. Its a Pentium 4 Single Core server. 1GB Ram and 160GB harddisk with cpane+WHM. I get error cpsrvd failed @ Thu Dec 11 19:50:43 2008. A restart was attempted automagically. Failure Reason: Unable to connect to port 2086 I cannot even connect to server because within minutes the server hangs.
View Replies!
View Related
How To Enable Fsockopen
i use a script that needs fsockopen and curl to work. also i installed curl, but couldn't enable fsockopen. how i can do that? i'm using centos, php5, cpanel etc etc.. i looked php.ini, disable_functions is empty..
View Replies!
View Related
Fsockopen Issue On Server
I need here a really help because there is in my opinion simple problem that can be solved. Here is example of simple script: Code: <?php if($_GET[u]){ echo "opening socket to {$_GET[u]} port 25<br/>"; flush(); $r=fsockopen($_GET[u],25,$errno,$errstr,30); echo "socket opened to {$_GET[u]} error $errno str $errstr"; } else if($_GET[d]){ echo "opening socket to {$_GET[d]} port 80<br/>"; $r=fsockopen($_GET[d],80,$errno,$errstr,30); echo "socket opened to {$_GET[d]} error $errno str $errstr"; } ?> One site hosted by totalchoicehosting display everything correct when i test it: ...
View Replies!
View Related
Warning: Fsockopen(): Unable To Connect To 127.0.0.1:25
Yesterday I had to install a renewed SSL Certificate. Managed to get it installed, in Plesk under domains/www_mydomain_com, but I also deleted the default SSL from the server/certificates area... So then I was getting an dns 500 error when browsingour site and I could not start httpd from within plesk. Went in through SSH and tried to start it from there and got and error stating it could not find the SSLCA cert it was looking for. So I edited my httpd.include file to point to my new certificate. Now http works, but my email has stopped? What gives how could the two be related! I can log into my webmail, compose message and when I send I get: Warning: fsockopen(): php_hostconnect: connect failed in /usr/share/psa-horde/pear/Net/Socket.php on line 108 Warning: fsockopen(): unable to connect to 127.0.0.1:25 in /usr/share/psa-horde/pear/Net/Socket.php on line 108 I have started and stopped psa, qmail. Rebooted the server. I tried the telnet localhost 25 but I get connection refused. Anytime I check qmail status it says stopped. Don't know if that is right or not. I know I am not recieving emails asI have sent many today through other accounts and they all come back undeliverable. We do run an online store as well so I am kinda nervous when our email goes down! Time to hire a server admin? I am running Plesk 7.5.4 on Red Hat 9 on a Virtual Dedicated Server with GoDaddy. Here is my "Component Info" from Plesk: bind 9.2.1-16 coldfusion-support 7.3-2.96.118 courier-imap 3.0.8-rh9.build75050824.12 frontpage 5.0.2.2634 httpd 2.0.40-21.17.legacy.1.swsoft mod_perl 1.99_07-5 mod_python 3.0.1-4 mysql 3.23.58-1.9 perl-Apache-ASP 2.57-rh9.build75050824.12 php 4.3.2-psa.rh9.1 psa 7.5.4-rh9.build75050824.12 psa-api-rpc 7.5.4-rh9.build75050930.11 psa-bu Component was not installed psa-horde 3.0.5-rh9.build75050824.12 psa-imp 4.0.3-rh9.build75050824.12 psa-logrotate 3.7-rh9.build75050824.12 psa-manual-custom-skin-guide 7.5.4-rh9.build75050824.12 psa-proftpd 1.2.10-rh9.build75050824.12 psa-qmail 1.03-rh9.build75050824.12 psa-qmail-rblsmtpd 0.70-rh9.build75050824.12 samba 2.2.7a-8.9.0.1.swsoft SSHTerm 0.2.2-rh9.build75050824.12 stunnel 4.04-3 webalizer 2.01_10-11
View Replies!
View Related
Shh : Connexion Refused
when i try to connect to ssh from putty, WinScp i got the following error : Code: Network Error : Connexion Refused and when i try to restart the ssh server (OpenSSH) from Whm i got : Code: Nov 29 18:50:31 host sshd: sshd -TERM succeeded Nov 29 18:50:31 host sshd: succeeded sshd has failed, please contact the sysadmin.
View Replies!
View Related
Hosting Email - 554 Message Refused
I have a dedicated server with godaddy (I know) and have used a pre-installed mail server product to host a few email accounts. Nothing fancy. My mail server is required to relay through godaddy's servers. A few of my users began complaining about email bounces - specifically "554 message refused". I opened a support ticket 2 weeks ago. Initially godaddy insisted that the emails contained suspicious phishing links - which they didn't. I incrementally stripped the content of the emails and discovered that it was two simple characters that caused the bounce - left and right square brackets []. I presented this information to godaddy and their response was: "When sending emails in the future, please make sure that these two brackets are not placed in succession to avoid the email from being bounced" The problem is that my users are trying to forward or respond to email with embedded content that sometimes contains []. I cannot expect them to strip down their emails. While acknowledging this issue, godaddy has refused to correct it. Sorry for long-winded explanation but I'm interested in some of your feedback - Does this policy make sense? Why can't they correct it?
View Replies!
View Related
Server Refused To Start Shell/command
I am having some server issues. A part of my sshd_config: Port 2255 Protocol 2 ListenAddress 8x.xx.xx.46 PermitRootLogin no Recently, when I want to connect to my server using putty, I get "Connection Refused" using the above IP address and port. When I enter the above IP address (or any other IP address that is stored/set on the server) and port 22, I get "Server refused to start shell/command". It did work before, using 8x.xx.xx.46:2255 and when I enter 8x.xx.xx.46:22 it will block. But now... not anymore. I am using "Direct Admin" to do a "System Backup". I do see the right port and IP address in the sshd_config file. How can I fix this? I can not login the server anymore, however I am going to the datacenter tomorrow. OS: CentOS Installed firewall / protection: APF + BFD Control Panel: Direct Admin
View Replies!
View Related
Did Port 80 Port To 7080, But Not Working When Login
I have an office internal website and I opened a port in the gateway of my office (7080) to this website (server )'s 80 port. That makes this website open to public as office has static IP. And then when I view the site from home . it's fine. But when I tried to login, the site is using a pop-up, I guess it's http authentciation, login, I was redirected to a url without my port number any more, that stops my access to the site as obviously I would. How can I keep my connection/port number ...?
View Replies!
View Related
What Does "Server Refused To Allocate Pty"
On one of our servers, a Athlon 64, 4 GB DDR2 RAM, Linux server with CentOS 5.3 64-bit installed and running the latest kernel (and which is located entirely different from the previous post, in a different city and DC), after installing some packages using yum and installing the latest PHP and Apache from tarballs, the server began slowing down and hanging on trying to do additional yum installs. So, we rebooted and logged back into our SSH shell and got "Server refused to allocate pty" after entering the password and then, nothing. We can't run other diagnostics or anything to determine the issue, look at any logs, etc. What does this mean and does anyone know how to fix it without reinstalling the OS? We have rescue mode available to us but we're not sure how to use it to fix this problem. We look forward to your solutions-oriented responses.
View Replies!
View Related
How Many Connection Per IP
I am on a VPS server and want to know in high traffic conditions how many connections per IP address can come... because on my site connections per IP going to 300 and mostly around 100. But these are fluctuating and from different locations... everytime.. so dont think as a Dos but so many connections per IP makes my server down for few minutes until connections dont go down. how many maximum connections per IP will be fine... for a little popular site.
View Replies!
View Related
One Connection Per IP
I have a directory, named downloads/ I have some huge files for download in this directory. now, when our users trying to download files from this folder with flashget (or dap or ...) this programs create 5 connection to that files! so If a user trying to download 5 files , he have 25 connection to my server! How can I limit connection per Ip on file in this folder ?
View Replies!
View Related
ImageMagick Failed
Transaction Check Error: file /etc/fonts/conf.d/30-aliases-fedora.conf from install of fontconfig-2.4.1-7.el5 conflicts with file from package fontconfig-2.4.1-6.el5 tried to yum or even installing this manually and get this error, please help me to bypass this.
View Replies!
View Related
Httpd Has Failed
I did a Graceful Server Reboot, but it seems httpd service not running yet, I got this error after try to restart Apache.. " Restarting Apache Web Server Waiting for httpd to restart..............finished. httpd (/usr/local/cpanel/whostmgr/bin/whostmgr ./reshttpd) running as root with PID 3319 httpd has failed, please contact the sysadmin. " and my Log: [root@XXXXX ~]# tail -f /usr/local/apache/logs/error_log Failed to start up concurrent users module! [Sat Jul 25 20:39:51 2009] [notice] suEXEC mechanism enabled (wrapper: /usr/loca l/apache/bin/suexec) [Sat Jul 25 20:39:52 2009] [warn] pid file /usr/local/apache/logs/httpd.pid over written -- Unclean shutdown of previous Apache run? [Sat Jul 25 20:39:52 2009] [crit] (28)No space left on device: Unable to create or access scoreboard (anonymous shared memory failure) shmget() failed: No space left on device ....
View Replies!
View Related
Nameserver Failed...
i have recive this mail every day that my named has stop: nameserver failed @ Wed Apr 1 22:10:21 2009. A restart was attempted automagically. Service Check Method: [check command] Cmd Service Check Raw Output: Fixed ownership on /etc/named.conf Fixed ownership on /etc/rndc.key Fixed ownership on /etc/rndc.conf
View Replies!
View Related
Lfd Failed
i have recive many mail. 40 or up per day that : lfd failed @ Fri May 1 13:36:14 2009. A restart was attempted automagically. Service Check Method: [check command]
View Replies!
View Related
Spamd Failed
I a keep received the email as below every 5 min: spamd failed @ Fri Jul 31 09:29:04 2009. A restart was attempted automagically. Service Check Method: [check command] Cmd Service Check Raw Output: Spamd is not running
View Replies!
View Related
Cpsrvd Failed
I am receiving a lot of cpsrvd emails every day and I am unsure how to stop this error. I have read somewhere that a possible cause is that there is no space left on the server. I do have a warning in my WHM next to "Disk /dev/hda6 (/) DMA+ 86 %". Could this be a possible cause of the problem? Code: Disk /dev/hda2 (/usr) DMA+ 45 % Disk /dev/hda3 (/var) DMA+ 69 % Disk /dev/hda5 (/home) DMA+ 21 % Disk /dev/hda6 (/) DMA+ 86 % Disk /dev/hda7 (/tmp) DMA+ 4 % Disk /dev/hda1 (/boot) DMA+ 56 % Email error: Code: cpsrvd failed @ Sat Nov 15 13:00:50 2008. A restart was attempted automagically. Service Check Method: [tcp connect] Failure Reason: Unable to connect to port 2086
View Replies!
View Related
Httpd Failed
I have httpd down right now without any error outputted on errors_log my server is with 4 Quad-Core Intel Xeon 2.66GHz (16 CPu) and 16GB of RAM. Is running CentOS Linux 5.1 and Apache/2.2.8. The site that will be running in this server has an average of 360,000 pageviews daily, so we want to make sure to tweak the configuration at its best. my httpd.Conf: Include "/usr/local/apache/conf/includes/pre_main_global.conf" Include "/usr/local/apache/conf/includes/pre_main_2.conf" # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Direct modifications to the Apache configuration file may be lost upon subsequent regeneration of the # # configuration file. To have modifications retained, all modifications must be checked into the # # configuration system by running: # # /usr/local/cpanel/bin/apache_conf_distiller --update # # To see if your changes will be conserved, regenerate the Apache configuration file by running: # # /usr/local/cpanel/bin/build_apache_conf # # and check the configuration file for your alterations. If your changes have been ignored, then they will # # need to be added directly to their respective template files. # # # # It is also possible to add custom directives to the various "Include" files loaded by this httpd.conf # # For detailed instructions on using Include files and the apache_conf_distiller with the new configuration # # system refer to the documentation at: [url] # # # # This configuration file was built from the following templates: # # /var/cpanel/templates/apache2/main.default # # /var/cpanel/templates/apache2/main.local # # /var/cpanel/templates/apache2/vhost.default # # /var/cpanel/templates/apache2/vhost.local # # /var/cpanel/templates/apache2/ssl_vhost.default # # /var/cpanel/templates/apache2/ssl_vhost.local # # # # Templates with the '.local' extension will be preferred over templates with the '.default' extension. # # The only template updated by the apache_conf_distiller is main.default. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # LoadModule auth_passthrough_module modules/mod_auth_passthrough.so LoadModule bwlimited_module modules/mod_bwlimited.so LoadModule frontpage_module modules/mod_frontpage.so LoadModule bw_module modules/mod_bw.so LoadModule evasive20_module modules/mod_evasive20.so Include "/usr/local/apache/conf/php.conf" Include "/usr/local/apache/conf/mod_bandwidth.conf" LoadModule security2_module modules/mod_security2.so #Include "/etc/httpd/conf/modsecurity.conf" ErrorLog "logs/error_log" DefaultType text/plain <Directory "/"> Options All AllowOverride All </Directory> <Directory "/usr/local/apache/htdocs"> Options Includes Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> <Files ~ "^error_log$"> Order allow,deny Deny from all Satisfy All </Files> <FilesMatch "^.ht"> Order allow,deny Deny from all Satisfy All </FilesMatch> <IfModule log_config_module> LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined LogFormat "%h %l %u %t "%r" %>s %b" common CustomLog "logs/access_log" common <IfModule logio_module> LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i" %I %O" combinedio </IfModule> </IfModule> <IfModule alias_module> ScriptAlias /cgi-bin/ "/usr/local/apache/cgi-bin/" </IfModule> <Directory "/usr/local/apache/cgi-bin"> AllowOverride None Options None Order allow,deny Allow from all </Directory> <IfModule mime_module> TypesConfig conf/mime.types AddType application/x-compress .Z AddType application/x-gzip .gz .tgz </IfModule> # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Direct modifications to the Apache configuration file may be lost upon subsequent regeneration of the # # configuration file. To have modifications retained, all modifications must be checked into the # # configuration system by running: # # /usr/local/cpanel/bin/apache_conf_distiller --update # # To see if your changes will be conserved, regenerate the Apache configuration file by running: # # /usr/local/cpanel/bin/build_apache_conf # # and check the configuration file for your alterations. If your changes have been ignored, then they will # # need to be added directly to their respective template files. # # # # It is also possible to add custom directives to the various "Include" files loaded by this httpd.conf # # For detailed instructions on using Include files and the apache_conf_distiller with the new configuration # # system refer to the documentation at: [url]# # # # This configuration file was built from the following templates: # # /var/cpanel/templates/apache2/main.default # # /var/cpanel/templates/apache2/main.local # # /var/cpanel/templates/apache2/vhost.default # # /var/cpanel/templates/apache2/vhost.local # # /var/cpanel/templates/apache2/ssl_vhost.default # # /var/cpanel/templates/apache2/ssl_vhost.local # # # # Templates with the '.local' extension will be preferred over templates with the '.default' extension. # # The only template updated by the apache_conf_distiller is main.default. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # PidFile logs/httpd.pid LockFile logs/accept.lock # Defined in /var/cpanel/cpanel.config: apache_port Listen 0.0.0.0:80 Timeout 300 User nobody Group nobody ExtendedStatus On ServerAdmin soso@soso.com ServerName server.soso.org LogLevel warn ServerSignature Off RewriteMap LeechProtect prg:/usr/local/cpanel/bin/leechprotect RewriteLock /usr/local/apache/logs/rewrite_lock UserDir public_html DirectoryIndex index.html.var index.htm index.html index.shtml index.xhtml index.wml index.perl index.pl index.plx index.ppl index.cgi index.jsp index.js index.jp index.php4 index.php3 index.php index.phtml default.htm default.html home.htm index.php5 Default.html Default.htm home.html SSLPassPhraseDialog builtin SSLSessionCache dbm:/usr/local/apache/logs/ssl_scache SSLSessionCacheTimeout 300 SSLMutex file:/usr/local/apache/logs/ssl_mutex SSLRandomSeed startup builtin SSLRandomSeed connect builtin <IfDefine SSL> # Defined in /var/cpanel/cpanel.config: apache_ssl_port Listen 0.0.0.0:443 AddType application/x-x509-ca-cert .crt AddType application/x-pkcs7-crl .crl </IfDefine> #AddHandler cgi-script .cgi .pl .plx .ppl .perl AddHandler server-parsed .shtml AddType text/html .shtml AddType application/x-tar .tgz AddType text/vnd.wap.wml .wml AddType image/vnd.wap.wbmp .wbmp AddType text/vnd.wap.wmlscript .wmls AddType application/vnd.wap.wmlc .wmlc AddType application/vnd.wap.wmlscriptc .wmlsc <Location /whm-server-status> SetHandler server-status Order deny,allow Deny from all Allow from 127.0.0.1 </Location> # SUEXEC is supported Include "/usr/local/apache/conf/includes/pre_virtualhost_global.conf" Include "/usr/local/apache/conf/includes/pre_virtualhost_2.conf" # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES. NameVirtualHost * # Default vhost for unbound IPs <VirtualHost *> ServerName server.soso.org DocumentRoot /usr/local/apache/htdocs ServerAdmin soso@soso.com <IfModule mod_suphp.c> suPHP_UserGroup nobody nobody </IfModule> </VirtualHost> # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES. # SSL <IfDefine SSL> </IfDefine> # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES. <IfModule mod_evasive20.c> DOSHashTableSize 3097 DOSPageCount 7 DOSSiteCount 100 DOSPageInterval 1 DOSSiteInterval 1 DOSBlockingPeriod 300 </IfModule> NameVirtualHost xxx.xxx.152.250:80 <VirtualHost xxx.xxx.152.250:80> ServerName soso.org ServerAlias soso.com www.soso.com ServerAlias eco.soso.org www.eco.soso.org ServerAlias soso.info www.soso.info ServerAlias soso.biz www.soso.biz ServerAlias soso.cc www.soso.cc ServerAlias www.soso.org DocumentRoot /home/soso/public_html ServerAdmin webmaster@soso.org ## User soso # Needed for Cpanel::ApacheConf <IfModule mod_suphp.c> suPHP_UserGroup soso soso </IfModule> <IfModule concurrent_php.c> php4_admin_value open_basedir "/home/soso:/usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/php:/tmp" php5_admin_value open_basedir "/home/soso:/usr/lib/php:/usr/local/lib/php:/tmp" </IfModule> <IfModule !concurrent_php.c> <IfModule mod_php4.c> php_admin_value open_basedir "/home/soso:/usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/php:/tmp" </IfModule> <IfModule mod_php5.c> php_admin_value open_basedir "/home/soso:/usr/lib/php:/usr/local/lib/php:/tmp" </IfModule> <IfModule sapi_apache2.c> php_admin_value open_basedir "/home/soso:/usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/php:/tmp" </IfModule> </IfModule> <IfModule !mod_disable_suexec.c> SuexecUserGroup soso soso </IfModule> CustomLog /usr/local/apache/domlogs/soso.org-bytes_log "%{%s}t %I . %{%s}t %O ." CustomLog /usr/local/apache/domlogs/soso.org combined </VirtualHost> ErrorDocument 400 /400.shtml ErrorDocument 401 /401.shtml ErrorDocument 403 /403.shtml ErrorDocument 404 /404.shtml ErrorDocument 500 /500.shtml Alias /bandwidth/ /usr/local/bandmin/htdocs/ Alias /sys_cpanel/ /usr/local/cpanel/sys_cpanel/ Alias /java-sys/ /usr/local/cpanel/java-sys/ Alias /img-sys/ /usr/local/cpanel/img-sys/ Alias /akopia/ /usr/local/cpanel/3rdparty/interchange/share/akopia/ Alias /neo-images/ /usr/local/cpanel/base/neomail/neo-images/ Alias /mailman/archives/ /usr/local/cpanel/3rdparty/mailman/archives/public/ Alias /pipermail/ /usr/local/cpanel/3rdparty/mailman/archives/public/ Alias /interchange/ /usr/local/cpanel/3rdparty/interchange/share/interchange/ Alias /interchange-5/ /usr/local/cpanel/3rdparty/interchange/share/interchange-5/ ScriptAlias /cgi-sys/ /usr/local/cpanel/cgi-sys/ ScriptAlias /mailman/ /usr/local/cpanel/3rdparty/mailman/cgi-bin/ ScriptAliasMatch ^/?cpanel/?$ /usr/local/cpanel/cgi-sys/redirect.cgi ScriptAliasMatch ^/?securecpanel/?$ /usr/local/cpanel/cgi-sys/sredirect.cgi ScriptAliasMatch ^/?kpanel/?$ /usr/local/cpanel/cgi-sys/redirect.cgi ScriptAliasMatch ^/?controlpanel/?$ /usr/local/cpanel/cgi-sys/redirect.cgi ScriptAliasMatch ^/?securecontrolpanel/?$ /usr/local/cpanel/cgi-sys/sredirect.cgi ScriptAliasMatch ^/?webmail/?$ /usr/local/cpanel/cgi-sys/wredirect.cgi ScriptAliasMatch ^/?whm/?$ /usr/local/cpanel/cgi-sys/whmredirect.cgi ScriptAliasMatch ^/?securewhm/?$ /usr/local/cpanel/cgi-sys/swhmredirect.cgi Include "/usr/local/apache/conf/includes/post_virtualhost_global.conf" Include "/usr/local/apache/conf/includes/post_virtualhost_2.conf" ------------------------------------------------------------------------------------------------------------- my.cnf [mysqld] set-variable=local-infile=0 datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock safe-show-database old_passwords back_log = 75 skip-innodb max_connections = 1500 key_buffer = 1024M myisam_sort_buffer_size = 64M join_buffer_size = 1M read_buffer_size = 1M sort_buffer_size = 2M table_cache = 4000 thread_cache_size = 512 wait_timeout = 14400 connect_timeout = 10 tmp_table_size = 64M max_heap_table_size = 64M max_allowed_packet = 64M net_buffer_length = 16384 max_connect_errors = 10 thread_concurrency = 32 read_rnd_buffer_size = 786432 bulk_insert_buffer_size = 8M query_cache_limit = 5M query_cache_size = 144M query_cache_type = 1 query_prealloc_size = 262144 query_alloc_block_size = 65536 transaction_alloc_block_size = 8192 transaction_prealloc_size = 4096 default-storage-engine = MyISAM [mysqld_safe] err-log=/var/log/mysqld.log pid-file=/var/lib/mysql/mysql.pid nice = -10 open_files_limit = 8192 [mysqldump] quick max_allowed_packet = 64M [myisamchk] key_buffer = 1024M sort_buffer = 384M read_buffer = 256M write_buffer = 256M [mysqlhotcopy] interactive-timeout ----------------------------------------------------------------------- top : ------------------------------------------------------------------------ top - 18:27:31 up 2:51, 2 users, load average: 1.91, 2.55, 2.58 Tasks: 533 total, 2 running, 531 sleeping, 0 stopped, 0 zombie Cpu(s): 7.0%us, 3.6%sy, 0.0%ni, 89.1%id, 0.1%wa, 0.0%hi, 0.2%si, 0.0%st Mem: 16632148k total, 2014536k used, 14617612k free, 102904k buffers Swap: 4192924k total, 0k used, 4192924k free, 737684k cached PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 22527 mysql 5 -10 1228m 174m 3040 S 81 1.1 22:52.61 mysqld 3717 nobody 16 0 31248 13m 4052 S 6 0.1 0:01.08 httpd 3680 nobody 16 0 31380 13m 4060 R 4 0.1 0:03.07 httpd 3748 nobody 15 0 31044 13m 4052 S 4 0.1 0:01.02 httpd 3687 nobody 15 0 31324 13m 4064 S 4 0.1 0:01.53 httpd 3774 nobody 16 0 31324 13m 4056 S 4 0.1 0:00.72 httpd 3797 nobody 15 0 31324 13m 4060 S 4 0.1 0:02.20 httpd 3850 nobody 15 0 31380 13m 4068 S 4 0.1 0:02.11 httpd 3858 nobody 15 0 31020 13m 4060 S 4 0.1 0:02.91 httpd 3861 nobody 16 0 31252 13m 4116 S 4 0.1 0:01.46 httpd 3900 nobody 15 0 31332 13m 4056 S 4 0.1 0:01.22 httpd 3649 nobody 15 0 31316 13m 4060 S 3 0.1 0:01.06 httpd 3696 nobody 15 0 31020 13m 4052 S 3 0.1 0:01.20 httpd 3654 nobody 15 0 31308 13m 4124 S 3 0.1 0:02.05 httpd 3707 nobody 16 0 31552 13m 4060 S 3 0.1 0:02.03 httpd 3711 nobody 15 0 31072 13m 4060 S 3 0.1 0:02.52 httpd 3790 nobody 15 0 31376 13m 4064 S 3 0.1 0:02.00 httpd 3794 nobody 15 0 31048 13m 4060 S 3 0.1 0:01.10 httpd 3897 nobody 15 0 30764 13m 4404 S 3 0.1 0:01.76 httpd 3907 nobody 15 0 31316 13m 4060 S 3 0.1 0:02.35 httpd 3884 nobody 15 0 31156 13m 4056 S 2 0.1 0:00.99 httpd 3664 nobody 15 0 31308 13m 4060 S 2 0.1 0:01.97 httpd 3838 nobody 15 0 31340 13m 4056 S 2 0.1 0:00.88 httpd -------------------------------------------------------------------------------------------------- root@server [~]# netstat -lpan | grep :80 | wc -l 1657 root@server [~]# ---------------------------------------------------------------------------------------------- what to change to optimize this web server and solv this problem?
View Replies!
View Related
Httpd Failed
my apache crashed and I trying to restart apache from SSH, when I run "service httpd start" I didn't get any message and I come back yo command prompt, but the httpd is down yet
View Replies!
View Related
FSCK Failed
Our DC was perfoming a hardware test on one of our servers and two hours later, they have said: A fsck was run on this machine which seems to of failed somehow, resulting in the machine failing to boot under any kernel or in single user mode. As such we are at the point of not knowing how to proceed. If you have any ideas please let us know so that we can try to get this up and running. We had a new hard-drive put in two weeks ago, due to FSCK failing. I don't know what to do.
View Replies!
View Related
Sshd Has Failed
i can't connect to ssh.. I did try to restart ssh on whm but it is says Quote: Waiting for sshd to restart.... . . . . . . . . . . finished. Jan 27 19:03:06 server2 sshd: sshd -TERM succeeded Jan 27 19:03:06 server2 sshd: succeeded sshd has failed, please contact the sysadmin.
View Replies!
View Related
Mail Failed
(1) i have server with cpanel. (2) i suggest my customer set the smtp as his isp on the outlook. (3) today,he got a lot of mail failed,all the receiver are different,i can not know what and why they are,can you help me check why it is? Quote: >> ----- Original Message ----- >> From: "Mail Delivery Subsystem" >> To: >> Sent: Tuesday, April 24, 2007 1:51 PM >> Subject: Returned mail: User unknown >> >> >>> The original message was received at Tue, 24 Apr 2007 13:51:36 +0800 >>> (CST) >>> from *-*-*-*.dynamic.hinet.net [*.*.*.*] >>> >>> ----- The following addresses had permanent fatal errors ----- >>> >>> >>> ----- Transcript of session follows ----- >>> ... while talking to hermes.hosts.co.uk.: >>>>>> RCPT To: >>> > 550 ... User unknown >>> >> >> ------=_NextPart_000_08F3_01C78693.B099C350 >> Content-Type: application/octet-stream; >> name="ATT02284.dat" >> Content-Transfer-Encoding: quoted-printable >> Content-Disposition: attachment; >> filename="ATT02284.dat" >> >> Reporting-MTA: dns; msr51.hinet.net >> Received-From-MTA: DNS; *-*-*-*.dynamic.hinet.net >> Arrival-Date: Tue, 24 Apr 2007 13:51:36 +0800 (CST) >> >> Final-Recipient: RFC822; *@*.* >> Action: failed >> Status: 5.1.1 >> Remote-MTA: DNS; hermes.hosts.co.uk >> Diagnostic-Code: SMTP; 550 Domain name tse.uk.net does not resolve or = >> mail not configured >> Last-Attempt-Date: Tue, 24 Apr 2007 13:51:42 +0800 (CST) Quote: >> ----- Original Message ----- >> From: "Mail Delivery Subsystem" >> To: >> Sent: Tuesday, April 24, 2007 1:52 PM >> Subject: Returned mail: Host unknown (Name server: insight.cs.co.uk: host >> not found) >> >> >>> The original message was received at Tue, 24 Apr 2007 13:52:31 +0800 >>> (CST) >>> from *-*-*-*.dynamic.hinet.net [*.*.*.*] >>> >>> ----- The following addresses had permanent fatal errors ----- >>> >>> >>> ----- Transcript of session follows ----- >>> 550 ... Host unknown (Name server: >>> insight.cs.co.uk: host not found) >>> >> >> ------=_NextPart_000_08DD_01C78693.ADB6A090 >> Content-Type: application/octet-stream; >> name="ATT02263.dat" >> Content-Transfer-Encoding: 7bit >> Content-Disposition: attachment; >> filename="ATT02263.dat" >> >> Reporting-MTA: dns; msr15.hinet.net >> Received-From-MTA: DNS; *-*-*-*.dynamic.hinet.net >> Arrival-Date: Tue, 24 Apr 2007 13:52:31 +0800 (CST) >> >> Final-Recipient: RFC822; *@*.* >> Action: failed >> Status: 5.1.2 >> Remote-MTA: DNS; insight.cs.co.uk >> Last-Attempt-Date: Tue, 24 Apr 2007 13:52:34 +0800 (CST) >>
View Replies!
View Related
Httpd Failed
If I typed ' Service httpd start ' Receive below error mixing * ports and non-* ports with a NameVirtualHost address is not supported , proceeding with undefined results All I have added couple of IP address
View Replies!
View Related
Memory Failed
my server running with memory used 40%-50% Quote: Server Load 2.81 (2 cpus) Memory Used 42.4 % Swap Used 6.4 % But, some time (now), traffic is the same, memory used increase to 80%-90% very fast (Swap Used increase to 50%-60%). Quote: Server Load 3.05 (2 cpus) Memory Used 92.4 % Swap Used 52.84 % After that, the server can be down by overload Quote: Server Load >500 (2 cpus) Memory Used ~100 % Swap Used ~100 %
View Replies!
View Related
Ftpserver Has Failed
My server with cPanel, I have Switch to Pure-ftpd on FTP Configuration and got error, I'm unable to start FTP now Code: ...... Ftp server is not installed. Exiting. at /scripts/RestartSrv.pm line 191. ftpserver has failed, please contact the sysadmin. Install Complete Ftp Server Install Complete
View Replies!
View Related
Exim Failed By Itself
I have a busy cpanel mail server Very often now and then, i have 2 issue coming up: 1. Unroutable E-mail bounce back message The message looks like this: you@gmail.com unrouteable mail domain "gmail.com" I have already set "unlimited" mail per hour on cpanel itself and it should not be giving me this message but it does again. 2. Exim failed by itself (SMTP Error while sending out e-mail) I am using Outlook Express & Thunderbird, sometimes while sending out the e-mail, it gives SMTP error popup message.The e-mail was never sent out. I can only solve this problem by restarting exim manually. What are the permenant solution for both of this issue?
View Replies!
View Related
Httpd Has Failed
I'm unable to start my apache after installed ionCube, that mean my http is down now. Code: root@sv3 [~]# /etc/init.d/httpd start /etc/init.d/httpd start: httpd could not be started root@sv3 [~]#
View Replies!
View Related
Httpd Has Failed
When I restart it via WHM I see this : Waiting for httpd to restart.... . . . . . . . . . . finished. httpd status root 12200 1.0 1.1 25748 24076 ? S 09:25 0:00 /usr/local/cpanel/whostmgr/bin/whostmgr ./reshttpd httpd has failed, please contact the sysadmin. and when I restart it in via SSH , I get it : [root@saman ~]# service httpd restart /etc/init.d/httpd restart: httpd not running, trying to start Syntax error on line 21424 of /usr/local/apache/conf/httpd.conf: ScriptAlias takes two arguments, a fakename and a realname /etc/init.d/httpd restart: httpd could not be started
View Replies!
View Related
Named Failed
waht the solution to this problem? [root@server etc]# service named restart Stopping named: [FAILED] Starting named: Error in named configuration: zone localdomain/IN: loaded serial 42 zone localhost/IN: loaded serial 42 zone 0.0.127.in-addr.arpa/IN: loaded serial 1997022700 zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN: loaded serial 1997022700 zone 255.in-addr.arpa/IN: loaded serial 42 zone 0.in-addr.arpa/IN: loaded serial 42 zone server.mojaty4host.com/IN: loaded serial 2007070601 zone agr7.org/IN: loaded serial 2007070701 zone ahha1.com/IN: loaded serial 2007070701 zone i-artt.com/IN: loaded serial 2007070701 zone egyeye.com/IN: loaded serial 2007070701 zone mojaty.net/IN: loaded serial 2007070701 zone mgirlseduepmatir.com/IN: loaded serial 2007070701 zone mojaty.com/IN: loaded serial 2007070701 zone mojaty4host.com/IN: loaded serial 2007072800 zone omrnajd.com/IN: loaded serial 2007070701 zone sakervb.net/IN: loaded serial 2007070701 zone 5thdth.com/IN: loaded serial 2007070701 zone x454x.com/IN: loaded serial 2007070701 zone z5555z.com/IN: loaded serial 2007070701 zone domains.mojaty4host.com/IN: loaded serial 2007070801 zone server.mojaty4host.com.zz/IN: loaded serial 2007070801 zone voodafone.org/IN: loaded serial 2007071001 zone njoomcam.com/IN: loaded serial 2007071201 zone cokedown4host.com/IN: loaded serial 2007071301 zone q84cam.com/IN: loaded serial 2007071501 zone golden4web.com/IN: loaded serial 2007071501 zone tsmymat.com/IN: loaded serial 2007071601 zone chat.mojaty4host.com/IN: loaded serial 2007072501 zone reemando.com/IN: loaded serial 2007071701 zone khaleejstudent.com/IN: loaded serial 2007071701 zone amwaj3.com/IN: loaded serial 2007071701 zone academy-love.com/IN: loaded serial 2007071801 zone alrsamhost.net/IN: loaded serial 2007071801 zone new-lock.com/IN: loaded serial 2007071801 zone yutmah.com/IN: loaded serial 2007071801 zone ksa-stars.com/IN: loaded serial 2007071801 zone gold4shop.com/IN: loaded serial 2007071901 zone xhamsx.com/IN: loaded serial 2007071901 zone ithadyfans.com/IN: loaded serial 2007071901 zone banat-alriffa3.com/IN: loaded serial 2007071901 zone kingawy.net/IN: loaded serial 2007072201 zone ateaf-host.com/IN: loaded serial 2007072401 zone ns1.dr-nokia4host.com/IN: loaded serial 2007072301 zone ns2.dr-nokia4host.com/IN: loaded serial 2007072301 zone dr-nokia.org/IN: loaded serial 2007072501 zone k0s0a.com/IN: loaded serial 2007072701 zone hiarab4ever.net/IN: loaded serial 2007072801 zone ayam7.com/IN: loaded serial 2007072901 zone gulf-pixel.com/IN: loaded serial 2007080900 zone sa-club.com/IN: loaded serial 2007073101 zone sharjah1.org/IN: loaded serial 2007080201 zone al-doseri.net/IN: loaded serial 2007080301 zone alnouami.com/IN: loaded serial 2007080301 zone sharjah1.com/IN: loaded serial 2007080301 zone shababz.com/IN: loaded serial 2007080301 zone ahat-naif.com/IN: loaded serial 2007080501 zone al5yaal.net/IN: loaded serial 2007080508 zone cssarabia.com/IN: loaded serial 2007080501 zone hashlangroup.com/IN: loaded serial 2007080501 zone hot-w-groub.com/IN: loaded serial 2007080501 zone sa1tan.com/IN: loaded serial 2007080502 zone takinty.com/IN: loaded serial 2007080501 zone uaeksa.com/IN: loaded serial 2007080501 zone web2.mojaty4host.com/IN: loaded serial 2007080501 zone web3.mojaty4host.com/IN: loaded serial 2007080501 zone web4.mojaty4host.com/IN: loaded serial 2007080501 zone llwowll.com/IN: loaded serial 2007080601 zone ea4net.com/IN: loaded serial 2007080901 zone backup.com/IN: loaded serial 2007080901 zone 2qq7.com/IN: loaded serial 2007080901 zone 3kalam.net/IN: loaded serial 2007080901 zone 7laksa.net/IN: loaded serial 2007080901 zone 9habab.com/IN: loaded serial 2007080901 zone al-hidyaway.com/IN: loaded serial 2007080901 zone alkharjxp.com/IN: loaded serial 2007080901 zone alraass.com/IN: loaded serial 2007080901 zone alslbokhi.com/IN: loaded serial 2007080901 zone anamluae.com/IN: loaded serial 2007080901 zone b3z3.com/IN: loaded serial 2007080901 zone r3boob.net/IN: loaded serial 2007080901 zone banatcrazy.com/IN: loaded serial 2007080901 zone d3eenn.com/IN: loaded serial 2007080901 dns_master_load: /var/named/domoo3-7a2era.com.db:7: unexpected end of line dns_master_load: /var/named/domoo3-7a2era.com.db:6: unexpected end of input dns_master_load: /var/named/domoo3-7a2era.com.db:9: unexpected end of line dns_master_load: /var/named/domoo3-7a2era.com.db:8: unexpected end of input dns_master_load: /var/named/domoo3-7a2era.com.db:10: isc_lex_gettoken() failed: unbalanced parentheses dns_master_load: /var/named/domoo3-7a2era.com.db:10: unbalanced parentheses zone domoo3-7a2era.com/IN: loading master file /var/named/domoo3-7a2era.com.db: unexpected end of input _default/domoo3-7a2era.com/IN: unexpected end of input zone emprie-romance.com/IN: loaded serial 2007080901 zone essa-alharthy.com/IN: loaded serial 2007080901 zone fnon2.com/IN: loaded serial 2007080901 zone gahrr.com/IN: loaded serial 2007080901 zone hamsat14.com/IN: loaded serial 2007080901 zone hilali-fans.net/IN: loaded serial 2007080901 zone imam-shafie.com/IN: loaded serial 2007080901 zone jameiah.com/IN: loaded serial 2007080901 zone juvepersempre.com/IN: loaded serial 2007080901 zone l1n1.net/IN: loaded serial 2007080901 zone mjnonha.com/IN: loaded serial 2007080901 zone m-al7lween.com/IN: loaded serial 2007080901 zone qalak.com/IN: loaded serial 2007080901 zone qloob30.com/IN: loaded serial 2007080901 zone quraishat.com/IN: loaded serial 2007080901 zone raayse.com/IN: loaded serial 2007080901 zone romance-empire.com/IN: loaded serial 2007080901 zone roo7oman.com/IN: loaded serial 2007080901 zone rooo3h.net/IN: loaded serial 2007080901 zone roz-nada.com/IN: loaded serial 2007080901 zone seafx.com/IN: loaded serial 2007080901 zone shaagran.net/IN: loaded serial 2007080901 zone shwg.net/IN: loaded serial 2007080901 zone sqalb.com/IN: loaded serial 2007080901 zone stars6.com/IN: loaded serial 2007080901 zone v1111v.com/IN: loaded serial 2007080901 zone w998w.com/IN: loaded serial 2007080901 zone zkirt.com/IN: loaded serial 2007080901 zone a88888a.mojaty4host.com/IN: loaded serial 2007081001 zone acefhost.com/IN: loaded serial 2007081001 zone trtshly.com/IN: loaded serial 2007081001 zone n1n9.com/IN: loaded serial 2007062602 zone ya-gro7i.com/IN: loaded serial 2007081003 zone q-almjroh.com/IN: loaded serial 2007081001 zone u88p.com/IN: loaded serial 2007081001 zone dnadesh.net/IN: loaded serial 2007081001 zone 3atr.net/IN: loaded serial 2007081101 zone acefalmhrh.biz/IN: loaded serial 2007081101 zone al-trf.net/IN: loaded serial 2007081101 zone fn-fn.com/IN: loaded serial 2007081101 zone dl8l.com/IN: loaded serial 2007081101 zone sport-fifa.com/IN: loaded serial 2007081101 zone laamst.com/IN: loaded serial 2007081101 zone 3malka.com/IN: loaded serial 2007081101 zone acefalmhrh.net/IN: loaded serial 2007081101 zone aryweb.com/IN: loaded serial 2007081101 zone b77w.com/IN: loaded serial 2007081101 zone 500100100.net/IN: loaded serial 2007081101 zone soly-vb.com/IN: loaded serial 2007081101 zone rap-boyz.net/IN: loaded serial 2007081101 zone 3rb-islam.com/IN: loaded serial 2007081101 zone roz-vip.com/IN: loaded serial 2007081101 zone tknlujia-serv.com/IN: loaded serial 2007081101 zone gr7gr7.com/IN: loaded serial 2007081101 zone h-bnat.com/IN: loaded serial 2007081101 zone 2wgat.com/IN: loaded serial 2007081101 zone al5aleej.net/IN: loaded serial 2007081101 zone ala7asees.com/IN: loaded serial 2007081101 zone k7chat.com/IN: loaded serial 2007081101 zone 3albaal.com/IN: loaded serial 2007081101 zone alyakota.com/IN: loaded serial 2007081101 zone lootss.net/IN: loaded serial 2007081101 zone acef-des.com/IN: loaded serial 2007081101 zone almosabqat.com/IN: loaded serial 2007081101 zone hacker4ever.net/IN: loaded serial 2007081101 zone muza1.com/IN: loaded serial 2007081101 [FAILED] [root@server etc]# What is the solution to this problem Tried where many do not benefit you to contact technical support cpanel There can be no support slow unfortunately I hope you benefit in solving this problem
View Replies!
View Related
Better Connection To Peru
I just saw a post talking about a better connection to Brazil, but according to the "internet lines", Peru has a different connection. So, almost 80% of the people here uses Telefonica and some Telmex. I know ThePlanet has direct connect with Telefonica, but, is there any other good provider with the same benefits or even better?
View Replies!
View Related
|