Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Web Hosting


Advertisements:




SuperbHosting.net & Arvixe.com have generously sponsored dedicated servers and web hosting to ensure a reliable and scalable dedicated hosting solution for BigResource.com.







Mysql User Privilege Changed By Cpanel Or What


I am using Cpanel. One Cpanel account is backup. I use it to backup my database.

Under mysql, I gave this account ( backup ) many priviledges. But when the backup script ran, error said that backup account can not 'lock table'.

I gave "lock table' priviledge again and run the script, it is ok.
But after a while, when the script ran autmatically on daily basis, it lost the 'lock table' priviledge again.

I wonder if Cpanel is messing me up? What can I do about it? anyone knows?


View Complete Thread with Replies

Sponsored Links:

Related Forum Messages:
Recommend A UK LAMP Host - With Some Specific Mysql Privilege Requirements
I have a moderately successful site, which makes enough money to cover my current hosting costs of 7 per month. I know, millionaire row it ain't, but it's popular. But my database is getting big and my current host wont allow the user of EXECUTE and SUPER privileges which I need to run triggers and stored procedures to keep the page load times sensible.

So, I need another UK host with:

- 2Gb of space (the site serves up big PDF documents)

- 70Gb of bandwidth (I said they were big)

- mysql privs available as above

Customer service with my current host, uk web solutions, is great (apart from refusal to countenance the privileges) so I need my new host to be as good. Budget? well, you can see what I'm paying now, and I have a psychological £10/month barrier which I don't want to cross.

View Replies!   View Related
All CPanel & Email Passwords Changed PLUS Root
I got up today, went to check my emails and received invalid passwords on all my email accounts. I then went to check in the CPanels and get the same error when I try to login.

Then I try the root and same thing!

BUT all my linked FTP accounts work and the sites are online and working. One is giving a 500 error (cgi program) but besides that, they are all online w/ no changes.

My "host want to do a OS reinstall and let me try and restore my sites from a slave drive. I think thats stupid and shouldnt be needed.

They also automatically say I was hacked...Sure a hacker changed all the cpanel and email passwords but worked it so the linked FTP accounts would work and didnt take any sites offline.

View Replies!   View Related
Connect To MySQL DB Only On Certain User
I am using cPanel 11 (stable release) on a CentOS 5 server and would like to make it so that a certain database can only be connected to from the cPanel user that it is under (ie. user1_db can only be connected to from the user "user1" on the same server).

View Replies!   View Related
Wich User Have More Mysql Process?
How can see wich user have more mysql process?

View Replies!   View Related
Allow User To Remote Mysql Connection
how to allow user to remote mysql connection from his localhost ( in linux server with WHM )

my user wants to connect to the mysql from his localhost

View Replies!   View Related
How To Find Which Mysql User Is Using All Cpu
31015 100 15 0 151m 35m 5156 S 28 0.4 379:34.10 /usr/sbin/mysqld --basedir=/ --datadir=/var/lib/mysql

This is my top process, I have quad core server and because of this server load is over 10

I am using cPanel, is it possible to trace which user is using all this cpu?

View Replies!   View Related
MySQL Forgetting User Permissions
Does anyone know what could be the cause of this issue? I located a few others over at cpanel.net that have this problem, but no solution has been found.

[url]

I am running a VPS server with the following:

WHM 10.8.0 cPanel 10.9.1-S14304
RedHat 9 i686 - WHM X v3.1.0
phpMyAdmin - 2.9.0.2
MySQL client version: 4.1.10
mysql version: 5.0.27-standard

I have a database user that needs "Super Privileges" and so this was done. However, when Cpanel is updated the user permission is reset automatically from "ALL PRIVILEGES" to "USAGE".

Here's a look at the database permissions from phpMyAdmin.

Code:
User Host Password Global privileges Grant
hello localhost Yes ALL PRIVILEGES Yes
hello_ % No ALL PRIVILEGES Yes
hello_ localhost No ALL PRIVILEGES Yes

The user "hello" loses its "ALL PRIVILEGES" and switches over to "USAGE" if an update is triggered. Updates to cpanel, creating/removing a database/user, and updating the account password will cause the switch.

View Replies!   View Related
Mysql/user Is Marked As Crashed
I am trying to start mysql but i am getting the following error

MySQL manager or server PID file could not be found! [FAILED]
Starting MySQL................................... [FAILED]

I checked my hostname.err file in /var/lib/mysql and this is the error message it shows.

070130 17:59:41 mysqld started
070130 17:59:42 [ERROR] /usr/sbin/mysqld: Table './mysql/user' is marked as crashed and should be repaired
070130 17:59:42 [ERROR] /usr/sbin/mysqld: Table './mysql/user' is marked as crashed and should be repaired
070130 17:59:42 [ERROR] Fatal error: Can't open and lock privilege tables: Table './mysql/user' is marked as crashed and should be repaired
070130 17:59:42 mysqld ended

how I would repair that to get mysql to start again?

View Replies!   View Related
What Are Common MySQL User Permissions
I want to use something like PHPBB forums and using one MySQL user and database. Just wondering, what are common user permissions I should set for the user? I want to try to minimize any permissions that can cause big risk to the server security.

Here is a full list of permissions I can grant to the user (via Webmin):

-Select table data
-Insert table data
-Update table data
-Delete table data
-Create tables
-Drop tables
-Grant privileges
-Reference operations
-Manage indexes
-Alter tables
-Create temp tables
-Lock tables

View Replies!   View Related
Backup Mysql User Privileges
how do i backup mysql user privileges?

this will only backup the databases:
mysqldump --opt -u root -p --all-databases > data.sql

i would like to backup mysql user privileges too.

View Replies!   View Related
Default Host For Mysql User
By default, mysql will create user with host as 'localhost'. Now, if I want the host is '1.2.3.4' by default, how to configure it?

View Replies!   View Related
Change Mysql User Password Via Shell?
Anyone know the commands to change a MySQL user's password via ssh?

I found stuff for changing the root password, and tried to adapt it for the user, but it didn't work.

View Replies!   View Related
MySQL Replication For User On Shared Server
I never did replication and do not know much about it so I figured I would ask here if anyone knows or has done it before like this.

I have a user who wants me to enable replication on my server for his user. I dont like the sounds of it on a shared environment but if there is no risk to other users and its not a big resource hog I will do it. Anyway, from what I gather I have to:

1. execute:
GRANT REPLICATION SLAVE ON user_main.* TO 'repl'@'ip-here' IDENTIFIED BY '4T6WjUZa';
[url]

2. Stop mysql server and Add in my.cnf:
[mysqld]
log-bin=mysql-bin
server-id=1
slave-compressed=1
binlog-do-db=user_main
start server[url]

3. execute:
SHOW MASTER STATUS;
we need values of colomns File and Position from output of above command[url]

So my questions are:

Is there any security risk?
Is there significant extra resource usage?
Is this even done on shared environments?

View Replies!   View Related
MySQL: Access Denied For Root User
When I deleted a database, the user apparently was orphaned because when I tried to recreate it, it returned "user already exists". I've never encountered that problem although from Googling, I see others have and they delete the user to get around it.

When I log into mysql using the da_admin@ account and attempt to remove the user with drop user <user_name>; I receive the following error message:

ERROR 1227 (42000): Access denied; you need the CREATE USER privilege for this operation

It seems I don't have rights even as the root user. How can I get remove the orphaned user?

View Replies!   View Related
MySQL Overload Server, Wich User
how check which database / user MySQL overload the server?

View Replies!   View Related
MySQL Anyway To Log Queries Of Specific User
I know about the general log but want to just log queries of a specific user. Our database does 400 queries/s on a slow day, so I think it would be a pain to grep though a huge log like that. And, im not sure if it would cause any preformance issues.

View Replies!   View Related
Exim/Cpanel No Such User Here
I'm having an issue with email generated from a website contact form. The email is being sent from the website via php. The issue is that the email address that it is being sent to is a domain/website that is also on cpanel. It is trying to deliver it to a local account, but the email is acutally on a third party system outside of cpanel. Does anyone know anyway for exim to not try and deliver locally?

View Replies!   View Related
Cpanel Master User
Logging in to cpanel using root password warned you that you had logged in using root privs and you got a nice drop down where you could jump to any account's cpanel.

After changing my root password, the first domain set up on that server gets the nice drop down, and indeed full rights, despite using it's normal password. I also don't see the warning message about using root privs.

So, somehow, the domain's account has gained ROOT cpanel privs. Where is this set?

View Replies!   View Related
Weird MySQL: User/pass Stops Working After A While
I am having a very strange problem with 2 different cPanel accounts on a server with 500-600 accounts. For some reason after a day or two the mysql username/password stops working. We have tried changing the MySQL user and the password with no success. The log does not indicate that the MySQL password was changed in any way. Only these 2 accounts are affected and this problem occurred at least half dozen times each.

Again: these are two different accounts with 2 different MySQL users that after a while stop working (I am unable to determine if they stop working at the same time b/c they belong to different customers). When we reset the user (with the same pass) it works for a day or two. I have checked to connect not only from PHP but also from shell when it's down: it also doesn't work so this is a pure MySQL problem.

Also on the server we have Fantastico.

View Replies!   View Related
Granting MySQL Command Line Permissions To A User
Is there any safe way to grant command line permissions to a user/specific account? One that only allows them access to databases on their account.

The problem is that this user intermittently runs queries that cause their database to hang (including PHPMyAdmin, so they can't view the processlist through there), and I have to manually kill that process, because they can't.

Server is 2.4.21 with MySQL 4.0.27, admin is cPanel WHM.

View Replies!   View Related
Mysql Disable INSERT Access To Specific User/table
How can I disable INSERT access to specific table.

The user should have full access the the DB except insert to specific table.

The tables_priv allow to set what enable and not what disable.

I'm using mysql v5

View Replies!   View Related
Backing Up A All My CPanel User's
How do I backup all my cPanel users? Like there files, settings, emails, mysql, everything.

View Replies!   View Related
User Nobody Using All System Memory Cpanel
I tracked down another issue that I am having with this same server. I login and look at the system and 100% of the swap is used and 99% of the Ram. I look to see who's using it, and the user name is Nobody. What role does this user play in cpanel? Can I disable the user?

UPDATE: It is actually apache doing it.

7044 nobody 0

0.6

8.3 /usr/local/apache/bin/httpd -DSSL
2836 nobody 0

0.6

0.2 /usr/local/apache/bin/httpd -DSSL
2835 nobody 0

0.6

1.8 /usr/local/apache/bin/httpd -DSSL
2838 nobody 0

0.6

0.5 /usr/local/apache/bin/httpd -DSSL
2854 nobody 0

0.6

0.2 /usr/local/apache/bin/httpd -DSSL
7934 nobody 0

0.5

22.8 /usr/local/apache/bin/httpd -DSSL
2839 nobody 0

0.4

0.2 /usr/local/apache/bin/httpd -DSSL
2887 nobody 0

0.4

24.5 /usr/local/apache/bin/httpd -DSSL
2848 nobody 0

0.4

2.7 /usr/local/apache/bin/httpd -DSSL

View Replies!   View Related
Find User Bandwidth From SSH (CPanel)
Does anyone happen to know how to find the current bandwidth usage for users in CPanel via SSH? I found disk space, which is /scripts/dumpquota, but I can't find the bandwidth.

View Replies!   View Related
Tracking Down Web Process User In Cpanel
Recently, there are a lot of "apache" processes hogging my Cpanel server with the default owner "nobody". How could I track the apache process back to which user is using it?

View Replies!   View Related
Cpanel Not Allowing Access To User Accounts
On a new server we have running CPanel, we have manually created a user account and when i try and log into mydomain.com/whm with that username/password it doesn't let me.

Now my second thought is that I should be logging into mydomain.com/cpanel rather than mydomain.com/whm but I get a 404 for /cpanel.

If i'm logged in as root, i cannot transfer into the user account cpanel either...

View Replies!   View Related
How To Limit Apache Clients On One User On The Cpanel
i have 2 questions

1 ) iwant limit one user on the cpanel limit on the apache conections?

2 ) i want limit one user not use download manager for site clients

View Replies!   View Related
CPanel + Exim + User Level Filtering
whether our webhost has their configuration messed up, or if this is not genuinely possible with cpanel + exim + shared hosting.

Our email server is hosted with the web host, and what we want to do is to not allow certain users to be able to receive (And send) outgoing email to non-local domains e.g. they should only be able send and receive within our hosted domain, @mydomain.com .

Now, we've tried doing this using cpanel's user level filters and have setup the following:

Rules:
If Field To does not contain @mydomain.com OR
If Field From does not contain @mydomain.com

Action:

Fail with message.

We've tested these filters using combinations and they seem to be working as far as we can see on cpanel (it has the filter testing feature)

Now this works for people sending emails into our domain e.g. someone from hotmail tries sending emails to a user, and it bounces back.

But people from inside the domain can send emails to other domains even when they give valid results on the cpanel filter tester.

View Replies!   View Related
Give User Permission To Compile (cpanel)
I'd like to give my username on my server permission to access g++ to compile custom C++ programs. I know I can just su - and compile as root, but I really don't like that.

What do I need to do to allow ONLY my username permission to do that?

View Replies!   View Related
CPanel Resetpass User Parameter Vulnerability
I'm wondering if this is true:

[url]

Something like:

[url]

View Replies!   View Related
CPanel | JailShell | How Limit To Only /home/user
How to forbid the exit to the user too /home/user?

View Replies!   View Related
Email Notifications Whenever User Log's In FTP (CPanel)
Server configuration:
CENTOS 5.3 x86_64
cPanel 11.24.4-C35075 - WHM 11.24.2 - X 3.9

Is it possible to write a script that will be sending notifications on user e-mail, that is already pre-configured in their account, whenver user will log in to FTP.

Are there any pre-made scripts or if not, any hint's on writing something like that?

View Replies!   View Related
CPanel - Limiting IO Mem CPU Per User? Hostgator Like
I was reading up a thread where hostgator cpanel servers seem to be limiting IO activity per user/account/domain. How can that be achieved?

Any special limitations on a per account basis that I am not aware of?

View Replies!   View Related
How To Edit FTP User Permissions On A CPanel Account
My Pink Floyd website has a photo section of rare concert pictures that our members upload. We have about 3,000 of these pictures, that our members upload via an FTP server that is hosted on a simple cPanel web hosting account. Someone logged into the account and not only deleted all the pictures, but uploaded obscene pictures and index.html files to some really nasty stuff.

We delete all the obscene stuff, but before we re-upload all the pictures I need to know...

On a cPanel account is there a way to have the FTP User only able to upload files and not edit/delete/change? Somehow we can edit their permission?

I asked HostGator about this and the ChatTech said this cannot be done, and I was a bit surprised. I could easily do this on my own server, but i'm not sure where to start at the user level.

View Replies!   View Related
How To Remove Hosting Account, Domain And User By SSH In My Cpanel Server?
Currently I have 1 user hosting crash in my cpanel server.

I fail to restore and terminate or recreate his account in whm.

May I know what is the steps to remove and clean the hosting account in ssh?

I user /script/killacct but fail. So, i need manualy to delete user, hositng account and his mysql database in ssh, mode.

View Replies!   View Related
How To Use External CPanel Mysql In Another CPanel Server
I have 2 servers both have cpanel. I want to use 2nd server's mysql in my site which is on 1st server. I think thats not that hard. I don't wanna do clustering as this is temproary.

View Replies!   View Related
Redirect Domain/user To User.domain ONLY IF Folder 'user' Doesn't Exist
I thought I knew enough about my .htaccess stuff to do this, but I can't seem to work it out. What I want to do is if a user visits domain.com/folder, we check to see if the folder exists. If so, show as normal (IE domain.com/support)

If a user visits domain.com/dynamicusername (dynamicusername is not a physical folder), redirect to dynamicusername.domain.com

View Replies!   View Related
What Has Changed With My Liquidweb Servers?
I've had a few dedicated servers now with Liquidweb for over about two years.

Recently in the past few months I've begun getting these errors.

host.mydomain.com:2083 uses an invalid security certificate.

The certificate is not trusted because it is self signed.

(Error code: sec_error_untrusted_issuer)

* This could be a problem with the server's configuration, or it could be
someone trying to impersonate the server.

* If you have connected to this server successfully in the past, the error may
be temporary, and you can try again later.

Now I'm not sure what the issue is? What would have changed to have all the servers start giving me and my clients this error?

The error occurs when trying to login to WHM (for root), cPanel from root, cPanel for clients, FTP for clients, Mail for clients.

Thanks in advance for any insight.

I opened a ticket with Liquidweb once and they told me I need SSL Certificates for each server although I've never been explained why they all ran perfectly without the error for 2 years now.

View Replies!   View Related
Bind Somehow Changed After Cpupdate
We already ran our servers for a few years and never experienced a problem like this.

Our domain registrar REQUIRE correct nameserver setup, even the number of nameservers, before they register a new domain but after the last cpanel update (manually to both stable and then release) nameserver 4 don't respond.

With starting bind I got the following/

eth1:1, xx.xxx.xx.83#53 Jun 15 08:29:50 mercury named[17599]: listening on IPv4 interface eth1:2, xx.xxx.xx.84#53 Jun 15 08:29:50 mercury named[17599]: listening on IPv4 interface eth1:3, xx.xxx.xx.85#53 Jun 15 08:29:50 mercury named[17599]: listening on IPv4 interface eth1:4, xx.xxx.xx.86#53 Jun 15 08:29:50 mercury named[17599]: command channel listening on 127.0.0.1

Dig from within the system gave the correct results but dig from outside give a timeout error on nameserver 4.

[url] also don't show any results while [url]works correctly. (RDNS is correct and IP address point to ns4.sa-servers.net)

View Replies!   View Related
Quota And Package (changed To 0 MB)
I have a Problem with quota. All my account have an Unlimited Package and there quota is 0 MB.

I run following command:

Quote:

/scripts/initquotas
/scripts/resetquotas
/scripts/fixquotas
/scripts/upcp --force

when I ran /scripts/fixquotas and /scripts/resetquotas I saw following error (in SSH) :

Quote:

Resetting quota for zryco to 100 M
No filesystems with quota detected.

View Replies!   View Related
Changed The DNS - Domain Name Server
i have a reseller and a client couldn't renew his domain name , so he bought a new domain name and he wants me to move his files (hosted on his old domain name) to his new domain name . how can i do that ?? (his old domain name is hosted on godaddy now)

View Replies!   View Related
No Email Received After DNS Changed
I have a detected server and it host one domain with many sub domains account. I never used the cpanel DNS service, instead I used the hosting company’s DNS. .Everything was working fine (including the email) until I decided to have my own DNS. I used the domain register company DNS service to create a DNS records for the domain and all my sub-domains. The problem is the email did not work yet!! Here what I done with the DNS :

eg.com my domain and 1.1.1.1 the server IP address (e.g.)
Type--- Name ---- Domain -- Data ---Pref
A---- ---- eg.com ---- 1.1.1.1
A---- *. ---- eg.com ---- 1.1.1.1
A---- forum. ---- eg.com ---- 1.1.1.1
A---- mail. ---- eg.com ---- 1.1.1.1
MX---- ---- eg.com ---- 1.1.1.1----0
MX---- *. ---- eg.com ---- 1.1.1.1----0

I update the nameserver in the cpanel basic setup. It should work fine, I don’t know what goes wrong? I never touch the server configuration, the server was relay on external DNS service.

Here are the error that I got when I tried to send an email to the server :

info@eg.com
SMTP error from remote mail server after RCPT TO::
host mail.eg.com [1.1.1.1]:
550-Verification failed for ....

View Replies!   View Related
Changed Dns But Domain Still On Old Host
I buy new server from softlayer and after movieng all files

I go to godaddy and change dns for my domain to

ns1.softlayer.com
ns2.softlayer.com

also I setup the dns from whm
ns1.softlayer.com
ns2.softlayer.com

now more than 48 hour and the domain still on old host
you can check it here

www.3walim.com

View Replies!   View Related
Httpd.config Changed 3 Times
httpd.config changed since my server was hacked but they can not control it , they just delete db from mysq and they can not bypass direcoty

i upgrade to 2.2.8 apache
i make full security

but still i get strange problem that i found the httpd.config changed to make the .ht work by override option
i make this:
<Directory "/">
Options all
AllowOverride none
</Directory>

but after day i get it changed to be:
<Directory "/">
Options all
AllowOverride all
</Directory>

i installed mod_security and after a day i get the httpd.config was changed to make mod_secrity not work and also to make :allowoverride all!

i think there is way for attacker to alter httpd.config

i made a lot of security :
1.disable aldot of php function including decode_64base

2.insttal apf

3.mod_security with good rules

4.chmod httpd.config with 600 and i get it changed after a day and i made it 700

to prevent any change occured in httpd.config?

View Replies!   View Related
RBL Servers- Who Is Dead Who Have Changed
What RBL servers and list.domain.TLD is actually curently active?

I have the following in my RBL check, but i can't find the ip addresses for 3 of them. Have they changed there names or what?
zen.spamhaus.org Cannot resolve multihop.dsbl.org to an IP address.
bl.spamcop.net 216.127.43.94
dnsbl.sorbs.net 203.15.51.39 64.124.52.230 217.160.75.23
cbl.abuseat.org 216.168.28.50
multihop.dsbl.org Cannot resolve multihop.dsbl.org to an IP address.
qmail.bondedsender.org Cannot resolve query.bondedsender.org to an IP address

View Replies!   View Related
Changed Dns, But Still Showing Parked Page?
I changed the dns for a domain I purchased yesterday to a parking service at parked.com

Last night I changed the name servers to my hostgator ones. It worked. I was installing joomla, and publishing the site. Everything was fine when I went to bed.

So I wake up this morning.. now when I go to the site it shows the stupid parked.com parking page instead of what I was working on.

I deleted all the cache, history, temp internet files, cookies, everything.. I tried in firefox, and IE. I tried on two different computers. I can't get my site to load up.

I called hostgator and they said the site is fine and they don't see a park page. They told me just to clear my cache again.

the site is www.wiispecs.com

I would appreciate it if someone could check it out and tell me what site they see. I could use any ideas on how to fix this so I can view the page too.

I tried switching name servers to godaddy and then switching back to hostgator. I also emailed parked.com tech support.

View Replies!   View Related
Changed My TTL From 1800 To 45s - Propagation
I had a TTL of 1800s for my domain but since I will be soon moving to a new host, I lowered the value to 45s (the minimum I can use).

Since I had a first TTL of 1800s, does that mean that the new TTL value will be updated globally within 30mins? or will it take a random amount of time (few hours or so)?

I just want to wait to have the new 45s TTL value propagated everywhere before modifying the main IP.

View Replies!   View Related
WHM Changed IP Address, Now Points To Root Of Server -->
I'm trying to setup a new SSL host on my server. I changed the IP address in the WHM, and even though the httpd.conf file shows the proper path to the site's directory, when i type in the domain I get the cpanel default page at the apache root directory.

anyone else have this problem? know a fix?

I restarted apache and BIND, but no luck.

View Replies!   View Related
Simultaneous FTP User- Cpanel/WHM/Pure-FTP, Dual Xeon 2.4, 1gRAM, Dedicated
Simultaneous FTP User Question - Cpanel/WHM/Pure-FTP, Dual Xeon 2.4, 1gRAM, Dedicated

Does the following dedicated server spec throw any flags for you when considering our intended future use?

DEDICATED SERVER SPEC
Dual Xeon 2.40 ghz.
1 gig RAM
INTENDED FUTURE USE

- We currently host 300 low volume websites on the server.

- We only use 40 gigs of data bandwidth per month. (1000 allotted)

- We developed a new software product that allows auto-updates 300kb of data each day.

- We expect up to 500 people to use this software and need to access our FTP daily, at different times of the day (random).

- We plan to embed the FTP information into the software.

The FTP access will be transparent to the user.

Does our dedicated server sound like it could handle this? My guess is yes.

View Replies!   View Related
Error Backup, Transfer To New Server "Unable To Find The Cpanel User File."
I have problem:

Searching /root....
Found cpmove-clanpz.tar.gz!
Moving Packge to /root/cprestore/cpmove-clanpz.tar.gz

Extracting tarball....window.scroll(0,175);...............
Done

Extracting Domain....Done

Sorry, the copy failed. Unable to find the cpanel user file. Is the archive missing (cwd: /root/cprestore loaded cpmove-clanpz/cp/clanpz)?
checked 4 files.....

1. /scripts/pkgacct username...
2. Transfer backup to new server
3. /scripts/restorepkg username
4. this error

View Replies!   View Related
Servage.net Is Broke Down?... NO Dummy They Just Changed Their Business To Be SCAM
servage.net is Broke down?... NO Dummy! They just changed their business to be SCAM

I am writing this to just let other friends here to be aware of this scam, they used to be host providers and now they've just become SCAM.

So my experience story goes like this:

Some days ago I ordered a 6month plan and paid by VCC, And got an email from them saying that my order is declined due to VCC not charged so I checked the balance of VCC and just knew that my poor little VCC is charged 45$ by this Green Giant named servage, So I let them know asap, I emailed back and told them to re-check and now it is days (5 days actually) that I am sending daily mails to Mr.Servage Scam and All I've gotten to now is nothing (actualy they don't respond anymore) wish they be alive at least (is it war or something running in their country? )

I really got disappointed at them I thought that since they have been in business for some time they can be reliable (at least at selling), However I just wrote back in here to let others know that servage.net is actually broke down or at least changed his hosting business to become a fast reliable scam (perhaps more profitable, who knows?)

All I wanted was a simple sweat hosting plan for my friend.

BTW If any of servage.net staff is here: Hey man that's not necessary to do illegal actions! Let's face it you need money? right? OK just put a donation button in the homepage and take my word on this always some good people exist out there to donate some bucks to you ( I will donate you too ), just don't be like this, this is shame.

I'm thinking over filling a dispute against them right now. Who know perhaps some days they respond back (At least I can re-check my email every day till next 50 years)

View Replies!   View Related
Mysql/cpanel
I accidentally clicked upgrade to 5.0 from 4.1 in Cpanel.
Then I ran the update to latest version.

EVERYTHING BROKE!

Sites can't connect to mysql anymore, and also during the update, I'm getting:

Code:
md5sum mismatch (actual: 1f32cbcf13cce797cdc2a5c9553b5c35) (expected: 5a4c0dd1d71417a6d07452bb47d1259e)
Download Failed... trying again...in....60....59....58....57....56....55....54....53....52....51....50....49....48....47....46....45....44....43....42....41....40....39....38....37....36....35....34....33....32....31....30....29....28....27....26....25....24....23....22....21....20....19....18....17....16....15....14....13....12....11....10....9....8....7....6....5....4....3....2....1..Fetching http://httpupdate.cpanel.net/cpanelsync/RELEASE/cgi-sys/formmail.cgi (0)....@74.200.65.162......connected......receiving...1%...2%...3%...4%...5%...6%...7%...8%...9%...10%...11%...12%...13%...14%...15%...16%...17%...18%...19%...20%...21%...22%...23%...24%...25%...26%...27%...28%...29%...30%...31%...32%...33%...34%...35%...36%...37%...38%...39%...40%...41%...42%...43%...44%...45%...46%...47%...48%...49%...50%...51%...52%...53%...54%...55%...56%...57%...58%...59%...60%...61%...62%...63%...64%...65%...66%...67%...68%...69%...70%...71%...72%...73%...74%...75%...76%...77%...78%...79%...80%...81%...82%...83%...84%...85%...86%...87%...88%...89%...90%...91%...92%...93%...94%...95%...96%...97%...98%...99%...100%......Done
md5sum mismatch (actual: 1f32cbcf13cce797cdc2a5c9553b5c35) (expected: 5a4c0dd1d71417a6d07452bb47d1259e)
...skipping 74.200.65.162...Download Failed... trying again...in....60....59....58....57....56....55....54....53....52....51....50....49....48....47....46....45....44....43....42....41....40....39....38....37....36....35....34....33....32....31....30....29....28....27....26....25....24....23....22....21....20....19....18....17....16....15....14....13....12....11....10....9....8....7....6....5....4....3....2....1..Fetching http://httpupdate.cpanel.net/cpanelsync/RELEASE/cgi-sys/formmail.cgi (0)....@75.126.236.226......connected......receiving...1%...2%...3%...4%...5%...6%...7%...8%...9%...10%...11%...12%...13%...14%...15%...16%...17%...18%...19%...20%...21%...22%...23%...24%...25%...26%...27%...28%...29%...30%...31%...32%...33%...34%...35%...36%...37%...38%...39%...40%...41%...42%...43%...44%...45%...46%...47%...48%...49%...50%...51%...52%...53%...54%...55%...56%...57%...58%...59%...60%...61%...62%...63%...64%...65%...66%...67%...68%...69%...70%...71%...72%...73%...74%...75%...76%...77%...78%...79%...80%...81%...82%...83%...84%...85%...86%...87%...88%...89%...90%...91%...92%...93%...94%...95%...96%...97%...98%...99%...100%......Done
md5sum mismatch (actual: 1f32cbcf13cce797cdc2a5c9553b5c35) (expected: 5a4c0dd1d71417a6d07452bb47d1259e)
Download Failed... trying again...in....60....59....58....57....56....55....54....53....52....51....50....49....48....47....46....45....44....43....42....41....40....39....38....37....36....35....34....33....32....31....30....29....28....27....26....25....24....23....22....21....20....19....18....17....16....15....14....13....12....11....10....9....8....7....6....5....4....3....2....1..Fetching http://httpupdate.cpanel.net/cpanelsync/RELEASE/cgi-sys/formmail.cgi (0)....@75.126.236.226......connected......receiving...1%...2%...3%...4%...5%...6%...7%...8%...9%...10%...11%...12%...13%...14%...15%...16%...17%...18%...19%...20%...21%...22%...23%...24%...25%...26%...27%...28%...29%...30%...31%...32%...33%...34%...35%...36%...37%...38%...39%...40%...41%...42%...43%...44%...45%...46%...47%...48%...49%...50%...51%...52%...53%...54%...55%...56%...57%...58%...59%...60%...61%...62%...63%...64%...65%...66%...67%...68%...69%...70%...71%...72%...73%...74%...75%...76%...77%...78%...79%...80%...81%...82%...83%...84%...85%...86%...87%...88%...89%...90%...91%...92%...93%...94%...95%...96%...97%...98%...99%...100%......Done
md5sum mismatch (actual: 1f32cbcf13cce797cdc2a5c9553b5c35) (expected: 5a4c0dd1d71417a6d07452bb47d1259e)
Download Failed... trying again...in....60....59....58....57....56....55....54....53....52....51....50....49....48....47....46....45....44....43....42....41....40....39....38....37....36....35....34....33....32....31....30....29....28....27....26....25....24....23....22....21....20....19....18....17....16....15....14....13....12....11....10....9....8....7....6....5....4....3....2....1..Fetching http://httpupdate.cpanel.net/cpanelsync/RELEASE/cgi-sys/formmail.cgi (0)....@75.126.236.226......connected......receiving...1%...2%...3%...4%...5%...6%...7%...8%...9%...10%...11%...12%...13%...14%...15%...16%...17%...18%...19%...20%...21%...22%...23%...24%...25%...26%...27%...28%...29%...30%...31%...32%...33%...34%...35%...36%...37%...38%...39%...40%...41%...42%...43%...44%...45%...46%...47%...48%...49%...50%...51%...52%...53%...54%...55%...56%...57%...58%...59%...60%...61%...62%...63%...64%...65%...66%...67%...68%...69%...70%...71%...72%...73%...74%...75%...76%...77%...78%...79%...80%...81%...82%...83%...84%...85%...86%...87%...88%...89%...90%...91%...92%...93%...94%...95%...96%...97%...98%...99%...100%......Done
md5sum mismatch (actual: 1f32cbcf13cce797cdc2a5c9553b5c35) (expected: 5a4c0dd1d71417a6d07452bb47d1259e)
...skipping 75.126.236.226...Download Failed... trying again...in....60....59....58....57....56....55....54....53....52....51....50....49....48....47....46....45....44....43....42....41....40....39....38....37....36....35....34....33....32....31....30....29....28....27....26....25....24....23....22....21....20....19....18....17....16....15....14....13....12....11....10....9....8....7....6....5....4....3....2....1..Fetching http://httpupdate.cpanel.net/cpanelsync/RELEASE/cgi-sys/formmail.cgi (0)....@69.90.250.34......connected......receiving...1%...2%...3%...4%...5%...6%...7%...8%...9%...10%...11%...12%...13%...14%...15%...16%...17%...18%...19%...20%...21%...22%...23%...24%...25%...26%...27%...28%...29%...30%...31%...32%...33%...34%...35%...36%...37%...38%...39%...40%...41%...42%...43%...44%...45%...46%...47%...48%...49%...50%...51%...52%...53%...54%...55%...56%...57%...58%...59%...60%...61%...62%...63%...64%...65%...66%...67%...68%...69%...70%...71%...72%...73%...74%...75%...76%...77%...78%...79%...80%...81%...82%...83%...84%...85%...86%...87%...88%...89%...90%...91%...92%...93%...94%...95%...96%...97%...98%...99%...100%......Done
md5sum mismatch (actual: 1f32cbcf13cce797cdc2a5c9553b5c35) (expected: 5a4c0dd1d71417a6d07452bb47d1259e)
Download Failed... trying again...in....60....59....58....57....56....55....54....53....52....51....50....49....48....47....46....45....44....43....42....41....40....39....38....37....36....35....34....33....32....31....30....29....28....27....26....25....24....23....22....21....20....19....18....17....16....15....14....13....12....11....10....9....8....7....6....5....4....3....2....1..Fetching http://httpupdate.cpanel.net/cpanelsync/RELEASE/cgi-sys/formmail.cgi (0)....@69.90.250.34......connected......receiving...1%...2%...3%...4%...5%...6%...7%...8%...9%...10%...11%...12%...13%...14%...15%...16%...17%...18%...19%...20%...21%...22%...23%...24%...25%...26%...27%...28%...29%...30%...31%...32%...33%...34%...35%...36%...37%...38%...39%...40%...41%...42%...43%...44%...45%...46%...47%...48%...49%...50%...51%...52%...53%...54%...55%...56%...57%...58%...59%...60%...61%...62%...63%...64%...65%...66%...67%...68%...69%...70%...71%...72%...73%...74%...75%...76%...77%...78%...79%...80%...81%...82%...83%...84%...85%...86%...87%...88%...89%...90%...91%...92%...93%...94%...95%...96%...97%...98%...99%...100%......Done
md5sum mismatch (actual: 1f32cbcf13cce797cdc2a5c9553b5c35) (expected: 5a4c0dd1d71417a6d07452bb47d1259e)
Download Failed... trying again...in....60....59....58....57....56....55....54....53....52....51....50....49....48....47....46....45....44....43....42....41....40....39....38....37....36....35....34....33....32....31....30....29....28....27....26....25....24....23....22....21....20....19....18....17....16....15....14....13....12....11....10....9....8....7....6....5....4....3....2....1..Fetching http://httpupdate.cpanel.net/cpanelsync/RELEASE/cgi-sys/formmail.cgi (0)....@69.90.250.34......connected......receiving...1%...2%...3%...4%...5%...6%...7%...8%...9%...10%...11%...12%...13%...14%...15%...16%...17%...18%...19%...20%...21%...22%...23%...24%...25%...26%...27%...28%...29%...30%...31%...32%...33%...34%...35%...36%...37%...38%...39%...40%...41%...42%...43%...44%...45%...46%...47%...48%...49%...50%...51%...52%...53%...54%...55%...56%...57%...58%...59%...60%...61%...62%...63%...64%...65%...66%...67%...68%...69%...70%...71%...72%...73%...74%...75%...76%...77%...78%...79%...80%...81%...82%...83%...84%...85%...86%...87%...88%...89%...90%...91%...92%...93%...94%...95%...96%...97%...98%...99%...100%......Done
md5sum mismatch (actual: 1f32cbcf13cce797cdc2a5c9553b5c35) (expected: 5a4c0dd1d71417a6d07452bb47d1259e)

View Replies!   View Related
Copying Mysql Db In Cpanel
is there a way to copy mysql from an existing db, and then renaming it to another name?

I would like to copy my current db from a live forum site, and because I got a test forum but I need that test forum to use my current live db...but i want it to use a copy of the live db. The db has to be a different name for the test site. Sorry hard for me to explain.

Is there an easy way to do that? I would do it via cpanel backup and upload but the db is 2gb's gzip....

I can do it via ssh or whm as well.

View Replies!   View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved