Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ihaveathumb

Pages: [1] 2
1
Backup / Re: Exclude a directory
« on: October 27, 2023, 06:32:20 PM »
so we are talking about 10€ per year?

really? yes they are so greedy

To put free software that they took from someone else behind a paywall is greed.  It's not about the price.  It's the fact that they want to charge to use other people's work instead of developing their own features that justify paying.  None of the money they get goes towards the people that actually did the work.  They pocket it and try to find more free software that they can charge for.

2
Backup / Re: Exclude a directory
« on: October 27, 2023, 06:26:27 PM »
Must be something new, because i use PHP-FPM, Comodo WAF and all the stuff you mention, and i don't pay monthly for anything.

All i have is a pro license and thats it.

That is what you pay for.

3
Backup / Re: Exclude a directory
« on: October 27, 2023, 06:08:28 PM »
It is possible to do this without paying for a custom script?

I can guarantee you that the answer is no.  They have gotten extremely greedy, and they want user to pay for the most basic features.

PHP-FPM is a great example.  Want to use a completely free software that they did not develop? Be prepared to shell out a monthly fee.

Want to use Comodo WAF?  Another completely free software that they did not develop.  Again, monthly fee.

Want to have your server be secured by having things like phpMyAdmin, Roundcube, etc auto update?  Too bad!  You need to pay for that!

And since we're on the topic of security, want to use free scanners (again, not developed by them) like Maldet Scan, RKHunter Scan, Lynis Scan, and SymLink Scan?  Sucks to be you if you don't pay.

And here's the kicker!  If you do pay for support and get all these options, the people who handle the tickets will constantly break things, and then blame it on you.  This happened so many times!  It's like they scrape the bottom of the barrel to find people to work for them.  They have no idea what they are doing, but are more than happy to blame you for their mistakes.

Their greed is going to completely kill their business.

4
CentOS-WebPanel Bugs / Re: export database error in phpmyadmin
« on: July 05, 2023, 02:57:39 PM »
The only problem with not sharing info publicly is that then we don't have a knowledge pool from which to draw and infer solutions. So then you are driving others toward paid support. I have had all of one paid ticket, back several years ago during a cPanel migration. Since then, it's been a learning adventure but I am basically self-supported now. It does help not to stray too far from the defaults and what the kit provides -- then it's easier to diagnose issues as they come up.

That's exactly what they are doing!  They want you to pay, so they make it overly complicated, change the norms, and refuse to give out information.  The issue is that their support people can't even figure out how to fix the issues because their weird changes that are a step backwards.  For example, when I used to pay for support, I was having trouble updating something.  So, I created a ticket and asked them to update it.  They claimed they did, but they actually broke it.  When I pointed out that they broke it, they tried blaming me for using the normal scripts and not the CWP ones.  First off, how is anyone supposed to know that they modify things so heavily and badly that normal scripts can't be used.  Secondly, it was their support team that actually did it!  They used the normal script and then tried to blame me!  The support is just a joke!  I want you to go back a couple of years and check out some of the threads.  They used to work with people have give answers and information.  Now, they just tell you to make a ticket so they can get more money!

5
CentOS-WebPanel Bugs / Re: export database error in phpmyadmin
« on: June 26, 2023, 04:50:13 PM »
They're not going to fix this issue.  I even paid for their top tier support, and they hardly fixed a thing.  They broke more than they fixed.  And every time they broke something, they would blame me and argue.  Their support used to be great, but now it's an absolute joke.

I'm currently working on the same issue.  If I find a solution, I'll message you.  I refuse to post it, because I will not do their jobs for them!

6
Suggestions / Re: CWP Plugin Store
« on: October 03, 2021, 03:36:48 PM »
At this point I think that it's safe to say that they have either abandoned this feature or put it low on the priority list so they can concentrate on more important things like security and new features.  I'm okay with that.  I'd rather things be more secure than have a plugin store.

7
Sounds great!  Thank you for the response!  I'll be subscribing within the next few hours! :D

8
I just have a few questions before I sign up for support services.  I'm looking at getting either the business plan or the enterprise plan.  To make things easier, I'm just going to put them in a list.
  • How long would the process of installing the secure kernel take?  Would my server go down at all?
  • Does the process wipe the server and use a fresh install, or will my data remain?
  • Why would I need custom server rules?  Yes, I have a few of my own custom apps, but they are fairly basic database frontends.
  • Why do I want Nagios monitoring?  And which one is it?  I quickly glanced at their website, and saw multiple products.
  • What kind of performance checks are done and how often?  If there are any issues, do you fix them?
  • Would everything that you do with the server make it PCI Compliant?
I'm hoping that I can get a quick reply tho all of my questions.  I want to get the ball rolling on this.

9
Apache / Blocking .htaccess for PCI Compliance
« on: December 07, 2020, 05:49:25 PM »
So, I recently scanned my server for PCI compliance, and it failed.  One of the reasons that it failed was due to a bunch of htaccess files that contain authentication information.

Here is what the scan results state:

THREAT:
.htaccess contains authentication information.

IMPACT:
Unauthorized users can gather authentication information from this file.

SOLUTION:
Change the Apache configuration so the .htaccess file cannot be accessed via the Internet.

When I visit one of the urls they claim is giving access to .htaccess ( hn.myserver.com:2095/.htaccess ), I can access the file.

I have tried everything that I can think of to prevent this.

In httpd.conf I have this code (which was already there):

<Files ".ht*">
    Require all denied
</Files>

That was in there by default, but it doesn't block access.  So, I tried adding this code, as per a suggection I found, to httpd.conf:

<Files .htaccess>
   <IfModule mod_authz_core.c>
      Require all denied
   </IfModule>
   <IfModule !mod_authz_core.c>
      Deny from all
   </IfModule>
</Files>

That also didn't block access.  I read something where someone said put the above code into the .htaccess file. So, I did a search for all .htaccess file via ssh, and found the one I was pretty sure is the one hn.myserver.com:2095/.htaccess downloads at ./usr/local/cwpsrv/var/services/roundcube/. I added the code, and it still downloads.  I check the file, and it did have the new code in it, so I know I found the correct one.

I also read that I can just disable .htaccess by having AllowOverride None in my httpd.conf, but it was already in my httpd.conf file, and it doesn't do anything.

So, how do I block access to these?  Nothing makes sense to me!

I should also note, that I am using just straight apache 2.4.39.  No Varnish or NGINX

10
Other / My Short Review On Pro Support
« on: June 20, 2017, 01:12:57 PM »
First off, I hope this is the right section for this.

Like I said in the title, this review will be short.  I've had Pro Support for a few months now, and it is seriously freaking awesome.  Every issue that I have run into, they have fixed within one day.  For example, I was having issues with email.  they solved the problem in just a few hours.  They will also let you know what the problem is if you ask (or maybe you don't have to ask, but I always do).  They are not like most of the tech support people who I have dealt with.  You all know what kind of people I'm talking about.  They try to act superior even though all they're doing is reading answers off of a screen.  These guy don't act superior and they actually know what they are doing.

In closing, I rate the Pro Support 10/10 and definitely recommend it!!

11
PHP / Re: Unable to install PHP 7
« on: February 07, 2017, 08:25:03 PM »


go, for install only apache (no nginx, varnish) update and rebuild all vhost, after try install again php 7. after install apache with nginx or ur configs

Thanks for the suggestion robbyq, but I tried that and still nothing.  No matter what I try, PHP 7 just won't install.  Here is my current log:

Code: [Select]
--2017-02-07 15:06:46--  http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
Resolving downloads3.ioncube.com... 52.216.32.114
Connecting to downloads3.ioncube.com|52.216.32.114|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 9125103 (8.7M) [application/x-tar]
Saving to: `ioncube_loaders_lin_x86-64.tar.gz'

     0K .......... .......... .......... .......... ..........  0%  872K 10s
    50K .......... .......... .......... .......... ..........  1%  875K 10s
   100K .......... .......... .......... .......... ..........  1% 1.69M 8s
   150K .......... .......... .......... .......... ..........  2%  885K 9s
   200K .......... .......... .......... .......... ..........  2% 1.71M 8s
   250K .......... .......... .......... .......... ..........  3% 41.4M 7s
   300K .......... .......... .......... .......... ..........  3% 1.72M 6s
   350K .......... .......... .......... .......... ..........  4% 1.75M 6s
   400K .......... .......... .......... .......... ..........  5% 41.0M 5s
   450K .......... .......... .......... .......... ..........  5% 1.78M 5s
   500K .......... .......... .......... .......... ..........  6% 43.4M 5s
   550K .......... .......... .......... .......... ..........  6% 1.78M 5s
   600K .......... .......... .......... .......... ..........  7% 43.5M 4s
   650K .......... .......... .......... .......... ..........  7% 74.1M 4s
   700K .......... .......... .......... .......... ..........  8% 1.79M 4s
   750K .......... .......... .......... .......... ..........  8% 43.2M 4s
   800K .......... .......... .......... .......... ..........  9% 1.84M 4s
   850K .......... .......... .......... .......... .......... 10% 59.4M 4s
   900K .......... .......... .......... .......... .......... 10% 41.0M 3s
   950K .......... .......... .......... .......... .......... 11% 68.9M 3s
  1000K .......... .......... .......... .......... .......... 11% 1.84M 3s
  1050K .......... .......... .......... .......... .......... 12% 67.5M 3s
  1100K .......... .......... .......... .......... .......... 12% 55.0M 3s
  1150K .......... .......... .......... .......... .......... 13% 1.83M 3s
  1200K .......... .......... .......... .......... .......... 14% 62.7M 3s
  1250K .......... .......... .......... .......... .......... 14% 92.3M 3s
  1300K .......... .......... .......... .......... .......... 15% 62.9M 3s
  1350K .......... .......... .......... .......... .......... 15% 89.9M 2s
  1400K .......... .......... .......... .......... .......... 16% 1.83M 3s
  1450K .......... .......... .......... .......... .......... 16%  119M 2s
  1500K .......... .......... .......... .......... .......... 17% 86.6M 2s
  1550K .......... .......... .......... .......... .......... 17% 95.5M 2s
  1600K .......... .......... .......... .......... .......... 18% 1.88M 2s
  1650K .......... .......... .......... .......... .......... 19% 42.6M 2s
  1700K .......... .......... .......... .......... .......... 19% 87.0M 2s
  1750K .......... .......... .......... .......... .......... 20% 99.3M 2s
  1800K .......... .......... .......... .......... .......... 20%  124M 2s
  1850K .......... .......... .......... .......... .......... 21%  109M 2s
  1900K .......... .......... .......... .......... .......... 21% 1.86M 2s
  1950K .......... .......... .......... .......... .......... 22% 84.0M 2s
  2000K .......... .......... .......... .......... .......... 23% 99.4M 2s
  2050K .......... .......... .......... .......... .......... 23% 83.1M 2s
  2100K .......... .......... .......... .......... .......... 24%  142M 2s
  2150K .......... .......... .......... .......... .......... 24% 1.91M 2s
  2200K .......... .......... .......... .......... .......... 25% 44.1M 2s
  2250K .......... .......... .......... .......... .......... 25% 95.7M 2s
  2300K .......... .......... .......... .......... .......... 26% 99.5M 2s
  2350K .......... .......... .......... .......... .......... 26% 99.0M 2s
  2400K .......... .......... .......... .......... .......... 27%  130M 2s
  2450K .......... .......... .......... .......... .......... 28% 91.9M 1s
  2500K .......... .......... .......... .......... .......... 28% 1.91M 1s
  2550K .......... .......... .......... .......... .......... 29% 58.2M 1s
  2600K .......... .......... .......... .......... .......... 29% 85.3M 1s
  2650K .......... .......... .......... .......... .......... 30%  126M 1s
  2700K .......... .......... .......... .......... .......... 30% 79.4M 1s
  2750K .......... .......... .......... .......... .......... 31%  138M 1s
  2800K .......... .......... .......... .......... .......... 31%  146M 1s
  2850K .......... .......... .......... .......... .......... 32% 1.94M 1s
  2900K .......... .......... .......... .......... .......... 33% 38.3M 1s
  2950K .......... .......... .......... .......... .......... 33% 92.1M 1s
  3000K .......... .......... .......... .......... .......... 34%  126M 1s
  3050K .......... .......... .......... .......... .......... 34%  108M 1s
  3100K .......... .......... .......... .......... .......... 35%  100M 1s
  3150K .......... .......... .......... .......... .......... 35%  134M 1s
  3200K .......... .......... .......... .......... .......... 36%  127M 1s
  3250K .......... .......... .......... .......... .......... 37% 1.99M 1s
  3300K .......... .......... .......... .......... .......... 37% 52.6M 1s
  3350K .......... .......... .......... .......... .......... 38% 49.1M 1s
  3400K .......... .......... .......... .......... .......... 38%  102M 1s
  3450K .......... .......... .......... .......... .......... 39%  137M 1s
  3500K .......... .......... .......... .......... .......... 39%  123M 1s
  3550K .......... .......... .......... .......... .......... 40%  110M 1s
  3600K .......... .......... .......... .......... .......... 40%  101M 1s
  3650K .......... .......... .......... .......... .......... 41%  130M 1s
  3700K .......... .......... .......... .......... .......... 42% 1.99M 1s
  3750K .......... .......... .......... .......... .......... 42% 50.0M 1s
  3800K .......... .......... .......... .......... .......... 43% 75.6M 1s
  3850K .......... .......... .......... .......... .......... 43% 72.6M 1s
  3900K .......... .......... .......... .......... .......... 44%  139M 1s
  3950K .......... .......... .......... .......... .......... 44%  128M 1s
  4000K .......... .......... .......... .......... .......... 45%  138M 1s
  4050K .......... .......... .......... .......... .......... 46%  104M 1s
  4100K .......... .......... .......... .......... .......... 46%  103M 1s
  4150K .......... .......... .......... .......... .......... 47% 2.03M 1s
  4200K .......... .......... .......... .......... .......... 47% 71.5M 1s
  4250K .......... .......... .......... .......... .......... 48% 51.2M 1s
  4300K .......... .......... .......... .......... .......... 48%  135M 1s
  4350K .......... .......... .......... .......... .......... 49% 87.4M 1s
  4400K .......... .......... .......... .......... .......... 49%  108M 1s
  4450K .......... .......... .......... .......... .......... 50% 98.2M 1s
  4500K .......... .......... .......... .......... .......... 51%  130M 1s
  4550K .......... .......... .......... .......... .......... 51%  101M 1s
  4600K .......... .......... .......... .......... .......... 52%  109M 1s
  4650K .......... .......... .......... .......... .......... 52% 2.10M 1s
  4700K .......... .......... .......... .......... .......... 53% 39.8M 1s
  4750K .......... .......... .......... .......... .......... 53% 78.8M 1s
  4800K .......... .......... .......... .......... .......... 54% 71.2M 1s
  4850K .......... .......... .......... .......... .......... 54%  131M 1s
  4900K .......... .......... .......... .......... .......... 55%  121M 1s
  4950K .......... .......... .......... .......... .......... 56% 84.4M 1s
  5000K .......... .......... .......... .......... .......... 56% 87.9M 1s
  5050K .......... .......... .......... .......... .......... 57%  133M 1s
  5100K .......... .......... .......... .......... .......... 57%  111M 1s
  5150K .......... .......... .......... .......... .......... 58%  102M 1s
  5200K .......... .......... .......... .......... .......... 58%  127M 1s
  5250K .......... .......... .......... .......... .......... 59% 2.07M 1s
  5300K .......... .......... .......... .......... .......... 60% 70.7M 1s
  5350K .......... .......... .......... .......... .......... 60% 82.7M 1s
  5400K .......... .......... .......... .......... .......... 61%  141M 0s
  5450K .......... .......... .......... .......... .......... 61% 87.8M 0s
  5500K .......... .......... .......... .......... .......... 62%  133M 0s
  5550K .......... .......... .......... .......... .......... 62%  127M 0s
  5600K .......... .......... .......... .......... .......... 63% 87.0M 0s
  5650K .......... .......... .......... .......... .......... 63%  128M 0s
  5700K .......... .......... .......... .......... .......... 64%  128M 0s
  5750K .......... .......... .......... .......... .......... 65%  112M 0s
  5800K .......... .......... .......... .......... .......... 65% 96.7M 0s
  5850K .......... .......... .......... .......... .......... 66% 2.12M 0s
  5900K .......... .......... .......... .......... .......... 66% 44.4M 0s
  5950K .......... .......... .......... .......... .......... 67%  132M 0s
  6000K .......... .......... .......... .......... .......... 67%  102M 0s
  6050K .......... .......... .......... .......... .......... 68%  119M 0s
  6100K .......... .......... .......... .......... .......... 69% 91.5M 0s
  6150K .......... .......... .......... .......... .......... 69%  134M 0s
  6200K .......... .......... .......... .......... .......... 70%  124M 0s
  6250K .......... .......... .......... .......... .......... 70% 87.5M 0s
  6300K .......... .......... .......... .......... .......... 71%  133M 0s
  6350K .......... .......... .......... .......... .......... 71%  127M 0s
  6400K .......... .......... .......... .......... .......... 72%  111M 0s
  6450K .......... .......... .......... .......... .......... 72% 97.3M 0s
  6500K .......... .......... .......... .......... .......... 73% 2.19M 0s
  6550K .......... .......... .......... .......... .......... 74% 47.7M 0s
  6600K .......... .......... .......... .......... .......... 74% 68.5M 0s
  6650K .......... .......... .......... .......... .......... 75%  127M 0s
  6700K .......... .......... .......... .......... .......... 75%  103M 0s
  6750K .......... .......... .......... .......... .......... 76% 88.4M 0s
  6800K .......... .......... .......... .......... .......... 76%  120M 0s
  6850K .......... .......... .......... .......... .......... 77%  138M 0s
  6900K .......... .......... .......... .......... .......... 77%  105M 0s
  6950K .......... .......... .......... .......... .......... 78%  127M 0s
  7000K .......... .......... .......... .......... .......... 79%  109M 0s
  7050K .......... .......... .......... .......... .......... 79%  101M 0s
  7100K .......... .......... .......... .......... .......... 80%  123M 0s
  7150K .......... .......... .......... .......... .......... 80%  113M 0s
  7200K .......... .......... .......... .......... .......... 81% 2.27M 0s
  7250K .......... .......... .......... .......... .......... 81% 36.9M 0s
  7300K .......... .......... .......... .......... .......... 82% 62.4M 0s
  7350K .......... .......... .......... .......... .......... 83% 85.3M 0s
  7400K .......... .......... .......... .......... .......... 83%  106M 0s
  7450K .......... .......... .......... .......... .......... 84%  125M 0s
  7500K .......... .......... .......... .......... .......... 84%  138M 0s
  7550K .......... .......... .......... .......... .......... 85%  100M 0s
  7600K .......... .......... .......... .......... .......... 85%  106M 0s
  7650K .......... .......... .......... .......... .......... 86%  123M 0s
  7700K .......... .......... .......... .......... .......... 86%  104M 0s
  7750K .......... .......... .......... .......... .......... 87% 97.6M 0s
  7800K .......... .......... .......... .......... .......... 88%  135M 0s
  7850K .......... .......... .......... .......... .......... 88%  116M 0s
  7900K .......... .......... .......... .......... .......... 89%  101M 0s
  7950K .......... .......... .......... .......... .......... 89%  130M 0s
  8000K .......... .......... .......... .......... .......... 90% 2.26M 0s
  8050K .......... .......... .......... .......... .......... 90% 51.4M 0s
  8100K .......... .......... .......... .......... .......... 91% 71.1M 0s
  8150K .......... .......... .......... .......... .......... 92%  124M 0s
  8200K .......... .......... .......... .......... .......... 92%  103M 0s
  8250K .......... .......... .......... .......... .......... 93%  104M 0s
  8300K .......... .......... .......... .......... .......... 93%  137M 0s
  8350K .......... .......... .......... .......... .......... 94%  119M 0s
  8400K .......... .......... .......... .......... .......... 94%  105M 0s
  8450K .......... .......... .......... .......... .......... 95%  110M 0s
  8500K .......... .......... .......... .......... .......... 95%  124M 0s
  8550K .......... .......... .......... .......... .......... 96%  112M 0s
  8600K .......... .......... .......... .......... .......... 97% 97.8M 0s
  8650K .......... .......... .......... .......... .......... 97%  134M 0s
  8700K .......... .......... .......... .......... .......... 98%  101M 0s
  8750K .......... .......... .......... .......... .......... 98%  103M 0s
  8800K .......... .......... .......... .......... .......... 99%  140M 0s
  8850K .......... .......... .......... .......... .......... 99% 2.31M 0s
  8900K .......... .                                          100% 30.3M=0.9s

2017-02-07 15:06:47 (9.51 MB/s) - `ioncube_loaders_lin_x86-64.tar.gz' saved [9125103/9125103]

Initialized empty Git repository in /tmp/php-build/php-src/.git/
Loaded plugins: fastestmirror, security
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: mirror.raystedman.net
 * extras: bay.uchicago.edu
 * rpmforge: mirror.lstn.net
 * updates: pubmirrors.dal.corespace.com
Package gcc-4.4.7-17.el6.x86_64 already installed and latest version
Package gcc-c++-4.4.7-17.el6.x86_64 already installed and latest version
Package 1:make-3.81-23.el6.x86_64 already installed and latest version
Package openssl-devel-1.0.1e-48.el6_8.3.x86_64 already installed and latest version
Package autoconf-2.63-5.1.el6.noarch already installed and latest version
Package bison-2.4.1-5.el6.x86_64 already installed and latest version
Package git-1.7.1-4.el6_7.1.x86_64 already installed and latest version
No package checkinstall available.
Package httpd-devel-2.2.15-56.el6.centos.3.x86_64 already installed and latest version
Package libxml2-devel-2.7.6-21.el6_8.1.x86_64 already installed and latest version
Package libcurl-devel-7.19.7-52.el6.x86_64 already installed and latest version
Package libjpeg-turbo-devel-1.2.1-3.el6_5.x86_64 already installed and latest version
Package 2:libpng-devel-1.2.49-2.el6_7.x86_64 already installed and latest version
Package libXpm-devel-3.5.10-2.el6.x86_64 already installed and latest version
Package mysql-devel-5.1.73-8.el6_8.x86_64 is obsoleted by MariaDB-devel-10.1.21-1.el6.x86_64 which is already installed
Package postgresql-libs-8.4.20-6.el6.x86_64 already installed and latest version
Package libicu-devel-4.2.1-14.el6.x86_64 already installed and latest version
Package freetype-devel-2.3.11-17.el6.x86_64 already installed and latest version
Package libxslt-devel-1.1.26-2.el6_3.1.x86_64 already installed and latest version
Package bzip2-devel-1.0.5-7.el6_0.x86_64 already installed and latest version
Package gmp-devel-4.3.1-10.el6.x86_64 already installed and latest version
Package matching libmcrypt-devel-2.5.7-1.2.el6.rf.x86_64 already installed. Checking for update.
Package 12:aspell-devel-0.60.6-12.el6.x86_64 already installed and latest version
Package recode-devel-3.6-28.1.el6.x86_64 already installed and latest version
Nothing to do
buildconf: checking installation...
buildconf: autoconf version 2.63 (ok)
rebuilding aclocal.m4
rebuilding configure
configure.ac:276: error: Autoconf version 2.64 or higher is required
build/ax_check_compile_flag.m4:60: AX_CHECK_COMPILE_FLAG is expanded from...
autom4te: /usr/bin/m4 failed with exit status: 63
rebuilding main/php_config.h.in
configure.ac:276: error: Autoconf version 2.64 or higher is required
build/ax_check_compile_flag.m4:60: AX_CHECK_COMPILE_FLAG is expanded from...
autom4te: /usr/bin/m4 failed with exit status: 63
autoheader: '/usr/bin/autom4te' failed with exit status: 63
/usr/local/cwp/.conf/php_conf/php7.conf: line 1: ./configure: No such file or directory
make: *** No targets specified and no makefile found.  Stop.
make: *** No rule to make target `install'.  Stop.
Stopping httpd: [  OK  ]
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using s100541.wholesaleinternet.net for ServerName
[  OK  ]

Build Completed
###################

I think I've seen somewhere that my Install Dependencies button should be green after I install them.  It's still blue though.  I check the log for it, and there were no errors.  So, I assume that they are installed, but I'm not sure.

12
PHP / Unable to install PHP 7
« on: February 03, 2017, 03:36:01 PM »
I am currently unable to install PHP 7X.  I go to PHP Selector (NEW), installed the dependencies, check the PHP 7.x box, and click start compiler. 


This is what the log says:
Code: [Select]
--2017-02-03 10:15:56--  http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
Resolving downloads3.ioncube.com... 54.231.112.178
Connecting to downloads3.ioncube.com|54.231.112.178|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 9125103 (8.7M) [application/x-tar]
Saving to: `ioncube_loaders_lin_x86-64.tar.gz'

     0K .......... .......... .......... .......... ..........  0%  864K 10s
    50K .......... .......... .......... .......... ..........  1%  860K 10s
   100K .......... .......... .......... .......... ..........  1%  871K 10s
   150K .......... .......... .......... .......... ..........  2% 1.70M 9s
   200K .......... .......... .......... .......... ..........  2% 51.4M 7s
   250K .......... .......... .......... .......... ..........  3% 1.68M 7s
   300K .......... .......... .......... .......... ..........  3% 1.71M 6s
   350K .......... .......... .......... .......... ..........  4% 1.71M 6s
   400K .......... .......... .......... .......... ..........  5% 55.9M 5s
   450K .......... .......... .......... .......... ..........  5% 1.74M 5s
   500K .......... .......... .......... .......... ..........  6% 41.0M 5s
   550K .......... .......... .......... .......... ..........  6% 1.76M 5s
   600K .......... .......... .......... .......... ..........  7% 37.1M 4s
   650K .......... .......... .......... .......... ..........  7% 1.78M 4s
   700K .......... .......... .......... .......... ..........  8% 44.4M 4s
   750K .......... .......... .......... .......... ..........  8% 82.6M 4s
   800K .......... .......... .......... .......... ..........  9% 1.77M 4s
   850K .......... .......... .......... .......... .......... 10% 50.6M 4s
   900K .......... .......... .......... .......... .......... 10% 1.80M 4s
   950K .......... .......... .......... .......... .......... 11% 48.6M 3s
  1000K .......... .......... .......... .......... .......... 11% 52.4M 3s
  1050K .......... .......... .......... .......... .......... 12%  152M 3s
  1100K .......... .......... .......... .......... .......... 12% 1.79M 3s
  1150K .......... .......... .......... .......... .......... 13% 43.1M 3s
  1200K .......... .......... .......... .......... .......... 14% 89.5M 3s
  1250K .......... .......... .......... .......... .......... 14% 1.84M 3s
  1300K .......... .......... .......... .......... .......... 15% 55.7M 3s
  1350K .......... .......... .......... .......... .......... 15% 48.4M 3s
  1400K .......... .......... .......... .......... .......... 16% 93.1M 3s
  1450K .......... .......... .......... .......... .......... 16% 83.2M 2s
  1500K .......... .......... .......... .......... .......... 17% 1.83M 2s
  1550K .......... .......... .......... .......... .......... 17% 63.3M 2s
  1600K .......... .......... .......... .......... .......... 18% 57.9M 2s
  1650K .......... .......... .......... .......... .......... 19% 74.8M 2s
  1700K .......... .......... .......... .......... .......... 19% 1.89M 2s
  1750K .......... .......... .......... .......... .......... 20% 56.9M 2s
  1800K .......... .......... .......... .......... .......... 20% 62.1M 2s
  1850K .......... .......... .......... .......... .......... 21% 60.4M 2s
  1900K .......... .......... .......... .......... .......... 21% 83.1M 2s
  1950K .......... .......... .......... .......... .......... 22%  144M 2s
  2000K .......... .......... .......... .......... .......... 23% 1.85M 2s
  2050K .......... .......... .......... .......... .......... 23% 87.8M 2s
  2100K .......... .......... .......... .......... .......... 24% 72.9M 2s
  2150K .......... .......... .......... .......... .......... 24% 63.7M 2s
  2200K .......... .......... .......... .......... .......... 25%  102M 2s
  2250K .......... .......... .......... .......... .......... 25%  102M 2s
  2300K .......... .......... .......... .......... .......... 26% 1.87M 2s
  2350K .......... .......... .......... .......... .......... 26% 83.5M 2s
  2400K .......... .......... .......... .......... .......... 27% 68.1M 2s
  2450K .......... .......... .......... .......... .......... 28% 84.7M 2s
  2500K .......... .......... .......... .......... .......... 28% 95.7M 2s
  2550K .......... .......... .......... .......... .......... 29%  123M 1s
  2600K .......... .......... .......... .......... .......... 29% 1.88M 2s
  2650K .......... .......... .......... .......... .......... 30% 63.7M 1s
  2700K .......... .......... .......... .......... .......... 30%  150M 1s
  2750K .......... .......... .......... .......... .......... 31% 60.4M 1s
  2800K .......... .......... .......... .......... .......... 31%  149M 1s
  2850K .......... .......... .......... .......... .......... 32% 94.2M 1s
  2900K .......... .......... .......... .......... .......... 33%  125M 1s
  2950K .......... .......... .......... .......... .......... 33% 1.93M 1s
  3000K .......... .......... .......... .......... .......... 34% 44.5M 1s
  3050K .......... .......... .......... .......... .......... 34% 91.8M 1s
  3100K .......... .......... .......... .......... .......... 35% 81.7M 1s
  3150K .......... .......... .......... .......... .......... 35%  148M 1s
  3200K .......... .......... .......... .......... .......... 36% 87.6M 1s
  3250K .......... .......... .......... .......... .......... 37% 79.4M 1s
  3300K .......... .......... .......... .......... .......... 37%  152M 1s
  3350K .......... .......... .......... .......... .......... 38% 1.93M 1s
  3400K .......... .......... .......... .......... .......... 38% 63.3M 1s
  3450K .......... .......... .......... .......... .......... 39% 88.2M 1s
  3500K .......... .......... .......... .......... .......... 39% 67.6M 1s
  3550K .......... .......... .......... .......... .......... 40%  125M 1s
  3600K .......... .......... .......... .......... .......... 40% 99.7M 1s
  3650K .......... .......... .......... .......... .......... 41%  106M 1s
  3700K .......... .......... .......... .......... .......... 42%  121M 1s
  3750K .......... .......... .......... .......... .......... 42%  111M 1s
  3800K .......... .......... .......... .......... .......... 43% 1.85M 1s
  3850K .......... .......... .......... .......... .......... 43% 87.1M 1s
  3900K .......... .......... .......... .......... .......... 44%  149M 1s
  3950K .......... .......... .......... .......... .......... 44%  107M 1s
  4000K .......... .......... .......... .......... .......... 45%  103M 1s
  4050K .......... .......... .......... .......... .......... 46%  131M 1s
  4100K .......... .......... .......... .......... .......... 46%  106M 1s
  4150K .......... .......... .......... .......... .......... 47%  104M 1s
  4200K .......... .......... .......... .......... .......... 47%  125M 1s
  4250K .......... .......... .......... .......... .......... 48% 2.03M 1s
  4300K .......... .......... .......... .......... .......... 48% 30.6M 1s
  4350K .......... .......... .......... .......... .......... 49% 97.6M 1s
  4400K .......... .......... .......... .......... .......... 49%  130M 1s
  4450K .......... .......... .......... .......... .......... 50%  129M 1s
  4500K .......... .......... .......... .......... .......... 51% 87.2M 1s
  4550K .......... .......... .......... .......... .......... 51%  138M 1s
  4600K .......... .......... .......... .......... .......... 52%  125M 1s
  4650K .......... .......... .......... .......... .......... 52% 82.2M 1s
  4700K .......... .......... .......... .......... .......... 53%  143M 1s
  4750K .......... .......... .......... .......... .......... 53%  130M 1s
  4800K .......... .......... .......... .......... .......... 54% 1.98M 1s
  4850K .......... .......... .......... .......... .......... 54% 54.1M 1s
  4900K .......... .......... .......... .......... .......... 55%  138M 1s
  4950K .......... .......... .......... .......... .......... 56%  103M 1s
  5000K .......... .......... .......... .......... .......... 56%  126M 1s
  5050K .......... .......... .......... .......... .......... 57%  107M 1s
  5100K .......... .......... .......... .......... .......... 57%  115M 1s
  5150K .......... .......... .......... .......... .......... 58%  145M 1s
  5200K .......... .......... .......... .......... .......... 58%  106M 1s
  5250K .......... .......... .......... .......... .......... 59%  101M 1s
  5300K .......... .......... .......... .......... .......... 60%  131M 1s
  5350K .......... .......... .......... .......... .......... 60% 2.00M 1s
  5400K .......... .......... .......... .......... .......... 61% 52.7M 1s
  5450K .......... .......... .......... .......... .......... 61%  154M 1s
  5500K .......... .......... .......... .......... .......... 62%  128M 0s
  5550K .......... .......... .......... .......... .......... 62% 82.5M 0s
  5600K .......... .......... .......... .......... .......... 63%  101M 0s
  5650K .......... .......... .......... .......... .......... 63% 67.5M 0s
  5700K .......... .......... .......... .......... .......... 64% 99.9M 0s
  5750K .......... .......... .......... .......... .......... 65% 88.9M 0s
  5800K .......... .......... .......... .......... .......... 65%  125M 0s
  5850K .......... .......... .......... .......... .......... 66% 79.4M 0s
  5900K .......... .......... .......... .......... .......... 66% 96.3M 0s
  5950K .......... .......... .......... .......... .......... 67% 2.18M 0s
  6000K .......... .......... .......... .......... .......... 67% 38.3M 0s
  6050K .......... .......... .......... .......... .......... 68% 75.3M 0s
  6100K .......... .......... .......... .......... .......... 69%  155M 0s
  6150K .......... .......... .......... .......... .......... 69% 90.1M 0s
  6200K .......... .......... .......... .......... .......... 70%  129M 0s
  6250K .......... .......... .......... .......... .......... 70%  126M 0s
  6300K .......... .......... .......... .......... .......... 71% 82.1M 0s
  6350K .......... .......... .......... .......... .......... 71% 90.6M 0s
  6400K .......... .......... .......... .......... .......... 72% 88.6M 0s
  6450K .......... .......... .......... .......... .......... 72%  108M 0s
  6500K .......... .......... .......... .......... .......... 73%  158M 0s
  6550K .......... .......... .......... .......... .......... 74% 80.1M 0s
  6600K .......... .......... .......... .......... .......... 74% 2.23M 0s
  6650K .......... .......... .......... .......... .......... 75% 37.9M 0s
  6700K .......... .......... .......... .......... .......... 75% 73.0M 0s
  6750K .......... .......... .......... .......... .......... 76% 84.0M 0s
  6800K .......... .......... .......... .......... .......... 76% 93.0M 0s
  6850K .......... .......... .......... .......... .......... 77%  155M 0s
  6900K .......... .......... .......... .......... .......... 77%  108M 0s
  6950K .......... .......... .......... .......... .......... 78%  101M 0s
  7000K .......... .......... .......... .......... .......... 79%  132M 0s
  7050K .......... .......... .......... .......... .......... 79% 82.6M 0s
  7100K .......... .......... .......... .......... .......... 80% 90.6M 0s
  7150K .......... .......... .......... .......... .......... 80%  127M 0s
  7200K .......... .......... .......... .......... .......... 81%  132M 0s
  7250K .......... .......... .......... .......... .......... 81%  136M 0s
  7300K .......... .......... .......... .......... .......... 82%  107M 0s
  7350K .......... .......... .......... .......... .......... 83% 2.21M 0s
  7400K .......... .......... .......... .......... .......... 83% 43.9M 0s
  7450K .......... .......... .......... .......... .......... 84% 93.7M 0s
  7500K .......... .......... .......... .......... .......... 84% 82.8M 0s
  7550K .......... .......... .......... .......... .......... 85% 83.3M 0s
  7600K .......... .......... .......... .......... .......... 85%  142M 0s
  7650K .......... .......... .......... .......... .......... 86%  114M 0s
  7700K .......... .......... .......... .......... .......... 86% 94.4M 0s
  7750K .......... .......... .......... .......... .......... 87%  126M 0s
  7800K .......... .......... .......... .......... .......... 88%  142M 0s
  7850K .......... .......... .......... .......... .......... 88% 74.0M 0s
  7900K .......... .......... .......... .......... .......... 89%  154M 0s
  7950K .......... .......... .......... .......... .......... 89%  138M 0s
  8000K .......... .......... .......... .......... .......... 90% 98.9M 0s
  8050K .......... .......... .......... .......... .......... 90%  107M 0s
  8100K .......... .......... .......... .......... .......... 91%  138M 0s
  8150K .......... .......... .......... .......... .......... 92% 2.28M 0s
  8200K .......... .......... .......... .......... .......... 92% 42.1M 0s
  8250K .......... .......... .......... .......... .......... 93% 82.6M 0s
  8300K .......... .......... .......... .......... .......... 93% 84.5M 0s
  8350K .......... .......... .......... .......... .......... 94%  118M 0s
  8400K .......... .......... .......... .......... .......... 94%  104M 0s
  8450K .......... .......... .......... .......... .......... 95%  138M 0s
  8500K .......... .......... .......... .......... .......... 95% 85.9M 0s
  8550K .......... .......... .......... .......... .......... 96%  131M 0s
  8600K .......... .......... .......... .......... .......... 97%  107M 0s
  8650K .......... .......... .......... .......... .......... 97%  123M 0s
  8700K .......... .......... .......... .......... .......... 98%  140M 0s
  8750K .......... .......... .......... .......... .......... 98% 91.2M 0s
  8800K .......... .......... .......... .......... .......... 99%  149M 0s
  8850K .......... .......... .......... .......... .......... 99%  106M 0s
  8900K .......... .                                          100%  122M=0.9s

2017-02-03 10:15:57 (9.32 MB/s) - `ioncube_loaders_lin_x86-64.tar.gz' saved [9125103/9125103]

Initialized empty Git repository in /tmp/php-build/php-src/.git/
Loaded plugins: fastestmirror, security
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: cosmos.illinois.edu
 * extras: centos.pymesolutionsweb.com
 * rpmforge: mirror.nexcess.net
 * updates: centos.firehosted.com
Package gcc-4.4.7-17.el6.x86_64 already installed and latest version
Package gcc-c++-4.4.7-17.el6.x86_64 already installed and latest version
Package 1:make-3.81-23.el6.x86_64 already installed and latest version
Package openssl-devel-1.0.1e-48.el6_8.3.x86_64 already installed and latest version
Package autoconf-2.63-5.1.el6.noarch already installed and latest version
Package bison-2.4.1-5.el6.x86_64 already installed and latest version
Package git-1.7.1-4.el6_7.1.x86_64 already installed and latest version
No package checkinstall available.
Package libxml2-devel-2.7.6-21.el6_8.1.x86_64 already installed and latest version
Package libcurl-devel-7.19.7-52.el6.x86_64 already installed and latest version
Package libjpeg-turbo-devel-1.2.1-3.el6_5.x86_64 already installed and latest version
Package 2:libpng-devel-1.2.49-2.el6_7.x86_64 already installed and latest version
Package libXpm-devel-3.5.10-2.el6.x86_64 already installed and latest version
Package mysql-devel-5.1.73-8.el6_8.x86_64 is obsoleted by MariaDB-devel-10.1.21-1.el6.x86_64 which is already installed
Package postgresql-libs-8.4.20-6.el6.x86_64 already installed and latest version
Package libicu-devel-4.2.1-14.el6.x86_64 already installed and latest version
Package freetype-devel-2.3.11-17.el6.x86_64 already installed and latest version
Package libxslt-devel-1.1.26-2.el6_3.1.x86_64 already installed and latest version
Package bzip2-devel-1.0.5-7.el6_0.x86_64 already installed and latest version
Package gmp-devel-4.3.1-10.el6.x86_64 already installed and latest version
Package matching libmcrypt-devel-2.5.7-1.2.el6.rf.x86_64 already installed. Checking for update.
Package 12:aspell-devel-0.60.6-12.el6.x86_64 already installed and latest version
Package recode-devel-3.6-28.1.el6.x86_64 already installed and latest version
Resolving Dependencies
--> Running transaction check
---> Package httpd-devel.x86_64 0:2.2.15-56.el6.centos.3 will be installed
--> Processing Dependency: httpd = 2.2.15-56.el6.centos.3 for package: httpd-devel-2.2.15-56.el6.centos.3.x86_64
--> Running transaction check
---> Package httpd.x86_64 0:2.2.15-56.el6.centos.3 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package          Arch        Version                        Repository    Size
================================================================================
Installing:
 httpd-devel      x86_64      2.2.15-56.el6.centos.3         updates      156 k
Installing for dependencies:
 httpd            x86_64      2.2.15-56.el6.centos.3         updates      834 k

Transaction Summary
================================================================================
Install       2 Package(s)

Total download size: 990 k
Installed size: 3.5 M
Downloading Packages:
--------------------------------------------------------------------------------
Total                                           5.2 MB/s | 990 kB     00:00     
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction

  Installing : httpd-2.2.15-56.el6.centos.3.x86_64                          1/2

  Installing : httpd-devel-2.2.15-56.el6.centos.3.x86_64                    2/2

  Verifying  : httpd-2.2.15-56.el6.centos.3.x86_64                          1/2

  Verifying  : httpd-devel-2.2.15-56.el6.centos.3.x86_64                    2/2

Installed:
  httpd-devel.x86_64 0:2.2.15-56.el6.centos.3                                   

Dependency Installed:
  httpd.x86_64 0:2.2.15-56.el6.centos.3                                         

Complete!
buildconf: checking installation...
buildconf: autoconf version 2.63 (ok)
rebuilding aclocal.m4
rebuilding configure
configure.ac:276: error: Autoconf version 2.64 or higher is required
build/ax_check_compile_flag.m4:60: AX_CHECK_COMPILE_FLAG is expanded from...
autom4te: /usr/bin/m4 failed with exit status: 63
rebuilding main/php_config.h.in
configure.ac:276: error: Autoconf version 2.64 or higher is required
build/ax_check_compile_flag.m4:60: AX_CHECK_COMPILE_FLAG is expanded from...
autom4te: /usr/bin/m4 failed with exit status: 63
autoheader: '/usr/bin/autom4te' failed with exit status: 63
/usr/local/cwp/.conf/php_conf/php7.conf: line 1: ./configure: No such file or directory
make: *** No targets specified and no makefile found.  Stop.
make: *** No rule to make target `install'.  Stop.
Stopping httpd: [  OK  ]
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using s100541.wholesaleinternet.net for ServerName
(98)Address already in use: make_sock: could not bind to address [::]:80
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
[FAILED]

Build Completed
###################


d084527b3418a339ac15b4863183d75d

I think I need to update Autoconf, but I don't want to do anything until I get some advice.

13
CentOS 6 Problems / Re: I can not access the site through the domain
« on: January 25, 2017, 07:14:11 PM »
Hello, this problem was solved, it was not a problem of Vps but of the DNS

Thanks
Care to share the solution with the rest of us?

14
Postfix / Re: ERROR: You don't have a valid hostname set!
« on: January 23, 2017, 05:26:03 PM »
you need to add a subdomain with valid A record set
You are awesome!  That totally did it.  Thank you!!!

15
Postfix / ERROR: You don't have a valid hostname set!
« on: January 23, 2017, 03:23:39 PM »
Hey guys, I'm new to CWP and I need some help.

I want to switch to a new server and start using CWP, so I am currently setting up the new server.  I've run into a couple of issues, but I've been able to do some searching and solve them.  This issue has not answer that I can find though.

Basically, when I go to Postfix Mail Server Manager, I get the message "ERROR: You don't have a valid hostname set!" in red.


The thing is, I'm pretty sure I have my hostname set.  Can anyone please help me?

Pages: [1] 2