↧
Winners advance to semifinals, whose victors with then play for gold in the internati
↧
ty35
↧
↧
rye5ye
↧
Cron Issues? Help Please
Hey all
So im having a bit of a strange issue which I cant seem to solve myself, and Im hoping someone can help me with it
I was wanting to setup a simple cron script to run every 10 min's on one of my websites
I made the script and tested it, and it worked fine, I then went to add the cron in the control panel and that added with no problems.
However, the script didnt want to run, and I couldn't figure out why.
I gave up at that point and decided to attack it another day, which was today
I made a simple php script to write "test" to a text file, and loaded that into cron.
Still nothing
So I did a grop for CRON on the syslog and found that the php i was using a few days ago was running every 10 mins.
and the one I just added isnt showing up anywhere
I checked the /var/spool/cron/crontabs/www-data and found the second test php was in there, and nothing aobut the first one, which is the one thats running.
Im not sure where to go from here, Anyone got any ideas?
Im sure its something stupid I have missed
Quick update
I deleted the test cron from the web interface, and checked the spool/cron www-data and can confirm that its gone from there
however the test cron is still showing in syslog every min, and im not sure where its being called from
And the test cron doesnt seems to be running properly either as the text file it writes to is empty
So im having a bit of a strange issue which I cant seem to solve myself, and Im hoping someone can help me with it
I was wanting to setup a simple cron script to run every 10 min's on one of my websites
I made the script and tested it, and it worked fine, I then went to add the cron in the control panel and that added with no problems.
However, the script didnt want to run, and I couldn't figure out why.
I gave up at that point and decided to attack it another day, which was today
I made a simple php script to write "test" to a text file, and loaded that into cron.
Still nothing
So I did a grop for CRON on the syslog and found that the php i was using a few days ago was running every 10 mins.
and the one I just added isnt showing up anywhere
I checked the /var/spool/cron/crontabs/www-data and found the second test php was in there, and nothing aobut the first one, which is the one thats running.
Im not sure where to go from here, Anyone got any ideas?
Im sure its something stupid I have missed
Quick update
I deleted the test cron from the web interface, and checked the spool/cron www-data and can confirm that its gone from there
however the test cron is still showing in syslog every min, and im not sure where its being called from
And the test cron doesnt seems to be running properly either as the text file it writes to is empty
↧
What is the MYSQL default Username
Hey all. What is the default MySQL username? Them sql root password is saved and i have it how ever when i try to login with root it keeps saying im not using a password and it wont log me in.
↧
↧
DNS Master/Slave Replication? Any progress?
About a year ago, I posted asking for DNS replication between Sentora servers. I was told it was being considered, but not implemented.
I'm curious if this is any closer to becoming a reality?
I have a multi-server setup, data is synced by syncthing between servers, but DNS isn't synced at all. So if the master server is down, the sites won't load at all.
DNS replication is extremely important, is there a way to do it with Sentora? Or a third party module others use?
I'm curious if this is any closer to becoming a reality?
I have a multi-server setup, data is synced by syncthing between servers, but DNS isn't synced at all. So if the master server is down, the sites won't load at all.
DNS replication is extremely important, is there a way to do it with Sentora? Or a third party module others use?
↧
Mail Forwarding not working for external domain and gmail
so i want to use the mail forwarder to send mail from my webmail to my gmail but it's not working.
Plus i tried to forward mail from webmail of my vps to webmail of my other hosting but it's not working.
Everything else works fine..
Edit : I found the issue and solved it
Plus i tried to forward mail from webmail of my vps to webmail of my other hosting but it's not working.
Everything else works fine..
Edit : I found the issue and solved it

↧
MYSQL Stop Working
Hello Guys,
I'm having the next problem is that mysql randomly shut down.
These are two logs error, I hope that someone could give me a hand.
First Error
Second Error
Thanks in advance
I'm having the next problem is that mysql randomly shut down.
These are two logs error, I hope that someone could give me a hand.
First Error
Second Error
Thanks in advance

↧
Need help for developpement under Ubuntu 16.04
Hi all!
I did the upgrade to php 7.0 almost easily under Fedora 25. Just few ajustement, no major bugs.
But Ubuntu 16.04 give me headaches.
Topo :
The installation looks ok. Some bugs, but I can fix all post installation for troubleshooting except one.
On the sentora prompt (index.php) I've got the classical error :
Critical Error: [0100] - Unable to connect or authenticate to the Sentora database (sentora_core).
We advice that you contact the server administrator to ensure that the database server is online and that the correct connecti.....
So I renamed the index.php for troubleshooting and I did a new one.
<?php
try {
$db = new PDO('mysql:host=localhost;dbname=sentora_core;charset=utf8', 'root', 'MyPassword_there');
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (PDOException $e) {
echo 'Connection failed: ' . $e->getMessage();
exit();
}
echo "You are connected<br/>";
?>
Then I've got :
Connection failed: SQLSTATE[HY000] [1698] Access denied for user 'root'@'localhost'
same as mysql error.log
2017-05-26T00:20:51.208147Z 4 [Note] Access denied for user 'root'@'localhost'
2017-05-26T00:20:51.411060Z 5 [Note] Access denied for user 'root'@'localhost'
2017-05-26T00:20:51.880846Z 6 [Note] Access denied for user 'root'@'localhost'
2017-05-26T00:20:52.050853Z 7 [Note] Access denied for user 'root'@'localhost'
2017-05-26T00:20:52.214923Z 8 [Note] Access denied for user 'root'@'localhost'
2017-05-26T00:20:52.385767Z 9 [Note] Access denied for user 'root'@'localhost'
Oki... fine?!?!? But i'm doing all I want under the classic mysql cli : mysql -u root pMyPassword_there
So don't understand why I can't connect root it with php pdo.
and no! selinux is not installed lol
Any clue? Probably when this problem will be solve, I'll be able to have a sentora php 7 under Ubuntu 16.04 very soon after that.
Thank you!
Eulogy
next step I'm doing some test about the utf8... but I don't think is that.
Oki... so don't waste your time. I found the solution. mysql under Ubuntu don't let's root connected through the php pdo.
so I created a other superuser with all privilege granted and pop!! sentora works!!!
Thank you for your mental support lol!!
Eulogy!
I did the upgrade to php 7.0 almost easily under Fedora 25. Just few ajustement, no major bugs.
But Ubuntu 16.04 give me headaches.
Topo :
The installation looks ok. Some bugs, but I can fix all post installation for troubleshooting except one.
On the sentora prompt (index.php) I've got the classical error :
Critical Error: [0100] - Unable to connect or authenticate to the Sentora database (sentora_core).
We advice that you contact the server administrator to ensure that the database server is online and that the correct connecti.....
So I renamed the index.php for troubleshooting and I did a new one.
<?php
try {
$db = new PDO('mysql:host=localhost;dbname=sentora_core;charset=utf8', 'root', 'MyPassword_there');
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (PDOException $e) {
echo 'Connection failed: ' . $e->getMessage();
exit();
}
echo "You are connected<br/>";
?>
Then I've got :
Connection failed: SQLSTATE[HY000] [1698] Access denied for user 'root'@'localhost'
same as mysql error.log
2017-05-26T00:20:51.208147Z 4 [Note] Access denied for user 'root'@'localhost'
2017-05-26T00:20:51.411060Z 5 [Note] Access denied for user 'root'@'localhost'
2017-05-26T00:20:51.880846Z 6 [Note] Access denied for user 'root'@'localhost'
2017-05-26T00:20:52.050853Z 7 [Note] Access denied for user 'root'@'localhost'
2017-05-26T00:20:52.214923Z 8 [Note] Access denied for user 'root'@'localhost'
2017-05-26T00:20:52.385767Z 9 [Note] Access denied for user 'root'@'localhost'
Oki... fine?!?!? But i'm doing all I want under the classic mysql cli : mysql -u root pMyPassword_there
So don't understand why I can't connect root it with php pdo.
and no! selinux is not installed lol
Any clue? Probably when this problem will be solve, I'll be able to have a sentora php 7 under Ubuntu 16.04 very soon after that.
Thank you!

Eulogy
next step I'm doing some test about the utf8... but I don't think is that.
Oki... so don't waste your time. I found the solution. mysql under Ubuntu don't let's root connected through the php pdo.
so I created a other superuser with all privilege granted and pop!! sentora works!!!
Thank you for your mental support lol!!
Eulogy!
↧
↧
Upgrade phpMyAdmin, PHP & MySQL
Although Sentora automatically installs phpMyAdmin, it appears to be an old version:
Version information: 4.0.10.1, latest stable version: 4.7.0
How do we upgrade to the latest version? I read a post by TGates about upgrading phpMyAdmin, but since it was 1 1/2 years old I want to make sure I am getting the latest advice.
Also, how can we tell which version of MySQL and PHP is installed, and how are they upgraded? I understand there is a warning regarding PHP 7.0, but I assume the previous version is safe to use with Sentora.
The reason for my interest in upgrading is I am getting errors while trying to import some databases from my previous cPanel web hosting service:
1.) ALTER TABLE error -- from SeoToaster CMS.
2.) No data was received to import. Either no file name was submitted, or the file size exceeded the maximum size permitted by your PHP configuration. -- from OsCommerce (file size 6,448 KB). Meanwhile, the database from an older version of OsCommerce imported fine.
I am assuming the above issues have something to do with a particular version of phpMyAdmin, PHP or MySQL.
Version information: 4.0.10.1, latest stable version: 4.7.0
How do we upgrade to the latest version? I read a post by TGates about upgrading phpMyAdmin, but since it was 1 1/2 years old I want to make sure I am getting the latest advice.
Also, how can we tell which version of MySQL and PHP is installed, and how are they upgraded? I understand there is a warning regarding PHP 7.0, but I assume the previous version is safe to use with Sentora.
The reason for my interest in upgrading is I am getting errors while trying to import some databases from my previous cPanel web hosting service:
1.) ALTER TABLE error -- from SeoToaster CMS.
2.) No data was received to import. Either no file name was submitted, or the file size exceeded the maximum size permitted by your PHP configuration. -- from OsCommerce (file size 6,448 KB). Meanwhile, the database from an older version of OsCommerce imported fine.
I am assuming the above issues have something to do with a particular version of phpMyAdmin, PHP or MySQL.
↧
Any good FileManager for Sentora?
Hello,
Can anyone suggest me any good filemanager for sentora. i tried few of them.
FileManager - Error 404 (Screenshot : http://prntscr.com/fcbhql ) - Source : http://sentora.hocvps.com/
ajaxplorer - Error ( "Module to be installed ajaxplorer No package match, check you have added the correct repo! ") - Source : http://www.servermom.org/install-ajaxplo...zpanel-cp/
Kae's File Manager rustus rustus.txt-clan.com kfm - Same error like Ajaxplorer
Suggest me a good working Filemanager or help me to fix anyone of this. Thanks you.
Can anyone suggest me any good filemanager for sentora. i tried few of them.
FileManager - Error 404 (Screenshot : http://prntscr.com/fcbhql ) - Source : http://sentora.hocvps.com/
ajaxplorer - Error ( "Module to be installed ajaxplorer No package match, check you have added the correct repo! ") - Source : http://www.servermom.org/install-ajaxplo...zpanel-cp/
Kae's File Manager rustus rustus.txt-clan.com kfm - Same error like Ajaxplorer
Suggest me a good working Filemanager or help me to fix anyone of this. Thanks you.
↧
Release with php 7 compatibility
Hi All!
Like you know i'm working on a new sentora installator with php 7 compatibility.
I'm not talking about support yet because is a Pre-Alpha release at this time.
I will probably do some overall tests during the next few days and request a master pull.
This the link for download the new installator
https://raw.githubusercontent.com/Eulogy...install.sh
What is new :
Installation support for
Fedora 24
Fedora 25
Ubuntu 16.04
compatible with php 7, the lastest mysql release and suhosin7 for php7
Apps upgrade
phpMyAdmin 4.0.10 to 4.7 (last stable)
Roundcube 1.0.4 to 1.2.x
phpsysinfo 3.2.4 to 2.3.7 (last stable)
All new apps are compatible with php 7.
Major bugs for the update...
The biggest bugs are about Ubuntu 16.04.
- The MySQL 5.7 don't allow the user root to connect through the php dpo. That cause the issues about "can't connect to the sentora_core database" on the promt logging.
- A other Bug also with the MySQL 5.7 from Ubuntu. He add the sql_mode = 'NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'. These sql_mode are incompatible with the sentora sql creation query, probably because some dates are empty or something like that.
I did partial patch about the last one til we rebuilt the sql query database creation.
If you try it and you have any issues, please post it on the thread. I gonna try to solve your problem soon as possible.
Thank you!
Eulogy
Like you know i'm working on a new sentora installator with php 7 compatibility.
I'm not talking about support yet because is a Pre-Alpha release at this time.
I will probably do some overall tests during the next few days and request a master pull.
This the link for download the new installator
https://raw.githubusercontent.com/Eulogy...install.sh
What is new :
Installation support for
Fedora 24
Fedora 25
Ubuntu 16.04
compatible with php 7, the lastest mysql release and suhosin7 for php7
Apps upgrade
phpMyAdmin 4.0.10 to 4.7 (last stable)
Roundcube 1.0.4 to 1.2.x
phpsysinfo 3.2.4 to 2.3.7 (last stable)
All new apps are compatible with php 7.
Major bugs for the update...
The biggest bugs are about Ubuntu 16.04.
- The MySQL 5.7 don't allow the user root to connect through the php dpo. That cause the issues about "can't connect to the sentora_core database" on the promt logging.
- A other Bug also with the MySQL 5.7 from Ubuntu. He add the sql_mode = 'NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'. These sql_mode are incompatible with the sentora sql creation query, probably because some dates are empty or something like that.
I did partial patch about the last one til we rebuilt the sql query database creation.
If you try it and you have any issues, please post it on the thread. I gonna try to solve your problem soon as possible.
Thank you!
Eulogy
↧
yhujt
↧
↧
Issues after upgrading to PHP 7.0
Hi,
I recently upgraded the PHP to version 7.0. After that, I'm getting lots of issues. My webmail stopped working. (etc/apps/webmail/?_task=login) and WordPress sites not functioning properly. I'm getting file_exists(): open_basedir restriction in effect error, and media library not loading any of the sites. So, Is Sentora not compatible with the PHP 7.0.18-1+deb.sury.org~trusty+1 ? Can anyone help to fix these server issues? Please note I'm new Sentora and this is my first VPS server.![Shy Shy]()
Thank you very much
I recently upgraded the PHP to version 7.0. After that, I'm getting lots of issues. My webmail stopped working. (etc/apps/webmail/?_task=login) and WordPress sites not functioning properly. I'm getting file_exists(): open_basedir restriction in effect error, and media library not loading any of the sites. So, Is Sentora not compatible with the PHP 7.0.18-1+deb.sury.org~trusty+1 ? Can anyone help to fix these server issues? Please note I'm new Sentora and this is my first VPS server.

Thank you very much
↧
Entertain Worlds
↧
Security update dicussion
Hi dev team!
As we know, suhosin offer only light update since few months. I don't really know if this will be update for the futur developpement.
So I start to think to introduce in the installer, Modsecurity + some usefull fail2ban jails instead of suhosin.
I don't know what you think about that?
After that, I saw M.B talk about getting out zsudo in the next update.
I meet some warning during the Core installation under Ubuntu 16.04 and Fedora.
/etc/sentora/configs/bin/zsudo.c: In function ‘main’:
/etc/sentora/configs/bin/zsudo.c:82:23: warning: implicit declaration of function ‘setuid’ [-Wimplicit-function-declaration]
if ( !setuid( geteuid() ) )
^~~~~~
/etc/sentora/configs/bin/zsudo.c:82:31: warning: implicit declaration of function ‘geteuid’ [-Wimplicit-function-declaration]
if ( !setuid( geteuid() ) )
^~~~~~~
I don't see any impact in fact. but do you have a patch about that? What is the last update you've got about this change? I can test it if you need.
Eulogy
As we know, suhosin offer only light update since few months. I don't really know if this will be update for the futur developpement.
So I start to think to introduce in the installer, Modsecurity + some usefull fail2ban jails instead of suhosin.
I don't know what you think about that?
After that, I saw M.B talk about getting out zsudo in the next update.
I meet some warning during the Core installation under Ubuntu 16.04 and Fedora.
/etc/sentora/configs/bin/zsudo.c: In function ‘main’:
/etc/sentora/configs/bin/zsudo.c:82:23: warning: implicit declaration of function ‘setuid’ [-Wimplicit-function-declaration]
if ( !setuid( geteuid() ) )
^~~~~~
/etc/sentora/configs/bin/zsudo.c:82:31: warning: implicit declaration of function ‘geteuid’ [-Wimplicit-function-declaration]
if ( !setuid( geteuid() ) )
^~~~~~~
I don't see any impact in fact. but do you have a patch about that? What is the last update you've got about this change? I can test it if you need.
Eulogy
↧
Error After Upgrade to PHP 5.6
I have a dedicated server and use the sentora as its control panel. I have installed WHMCS on my server but it can not run because there is no IonCube, then I add IonCube on my server without any constraints. After IonCube I added it still can not be used and error 500 or internal server error, after I browse the latest version of WHMCS requires PHP version 5.5 or 5.6. Then I tried to upgrade PHP to version 5.6 and success. But when in ssh I typed "php -v" why the result like the following:
Can not load the ionCube PHP Loader - extension already loaded
PHP 5.6.30 (cli) (built: Jan 19 2017 08:09:42)
Copyright © 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright © 1998-2016 Zend Technologies
With the ionCube PHP Loader (enabled) + Intrusion Protection from ioncube24.com (unconfigured) v6.0.9, Copyright © 2002-2016, by ionCube Ltd.
With Suhosin v0.9.37-dev, Copyright © 2007-2014, by SektionEins GmbH
At the top line there is an error Can not load the ionCube PHP Loader. How to handle it? Additionally error also occurs when I want to make the mysql username always happen Internal Server Error. How to resolve the error without having to re-install my server or how to restore php to version 5.3 or 5.4 according to the standard of sentora.
Please help. thank you
Screenshot_54.png (Size: 16.62 KB / Downloads: 1)
Screenshot_55.png (Size: 8.78 KB / Downloads: 2)
Can not load the ionCube PHP Loader - extension already loaded
PHP 5.6.30 (cli) (built: Jan 19 2017 08:09:42)
Copyright © 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright © 1998-2016 Zend Technologies
With the ionCube PHP Loader (enabled) + Intrusion Protection from ioncube24.com (unconfigured) v6.0.9, Copyright © 2002-2016, by ionCube Ltd.
With Suhosin v0.9.37-dev, Copyright © 2007-2014, by SektionEins GmbH
At the top line there is an error Can not load the ionCube PHP Loader. How to handle it? Additionally error also occurs when I want to make the mysql username always happen Internal Server Error. How to resolve the error without having to re-install my server or how to restore php to version 5.3 or 5.4 according to the standard of sentora.
Please help. thank you


↧
↧
User Access
I have installed sentora in Ubuntu 14.04. Sentora Version is 1.0.3. I have created a user in control panel.
After login to user CP, created a domain.
My question is why user domain is not reflecting in Admin CP?
After login to user CP, created a domain.
My question is why user domain is not reflecting in Admin CP?
↧
Write My Essay For Me
This is normal as they are under weight to hand over on time, and are excessively caught up with, making it impossible to participate in the written work amusement. Attempting to be touchy about valuing, we have charges that won't consume gaps in your pockets, and expose generalizations about exposition administrations being expensive. What's more, we never utilize 'compose my paper for me' solicitations to deceive you into purchasing. Regardless of whether your instructor is excessively suspicious about the sort of help you get from a designated author, or only a fanatic of tasteful custom papers, we know how to bargain even with the most complex of requests. You present a frame that says 'help me compose my article', and append extra documents if fundamental.
![[Image: 1.jpg]]()
We can compose on any level, regardless of how earnest your request is, and furnish overpowered understudies with papers that represent themselves. As yet wavering? Check our tributes and check whether we are the genuine article. We don't just love to manage school participants, yet enjoy unending helping their scholarly vocations. Without an administration that can settle the due date issues and convey on time, fog understudies would most likely neglect to pass, and what's more, we are not charging like you are the brilliant card proprietor. The significance of being ready is one of the key segments of effective correspondence, and we welcome that. Free boundless amendments are not by any means the only ones you get coordinating cover sheet and the framework are likewise in the bundle, alongside request and test papers. Our costs are sensible; Write My Essay For Me and you can simply utilize a rebate to make them more reasonable. The cost-viability you get from us is not accessible at whatever other site in this industry. All you have to do all together that your solicitations like compose my paper for me or compose my article modest, or even help me to compose my exposition, compose my school article, is to just enter our site, fill in the required fields in the request frame alongside adding your prerequisites or connections to it and continue with the installment.
![[Image: 1.jpg]](http://ak8.picdn.net/shutterstock/videos/4035778/thumb/1.jpg)
We can compose on any level, regardless of how earnest your request is, and furnish overpowered understudies with papers that represent themselves. As yet wavering? Check our tributes and check whether we are the genuine article. We don't just love to manage school participants, yet enjoy unending helping their scholarly vocations. Without an administration that can settle the due date issues and convey on time, fog understudies would most likely neglect to pass, and what's more, we are not charging like you are the brilliant card proprietor. The significance of being ready is one of the key segments of effective correspondence, and we welcome that. Free boundless amendments are not by any means the only ones you get coordinating cover sheet and the framework are likewise in the bundle, alongside request and test papers. Our costs are sensible; Write My Essay For Me and you can simply utilize a rebate to make them more reasonable. The cost-viability you get from us is not accessible at whatever other site in this industry. All you have to do all together that your solicitations like compose my paper for me or compose my article modest, or even help me to compose my exposition, compose my school article, is to just enter our site, fill in the required fields in the request frame alongside adding your prerequisites or connections to it and continue with the installment.
↧
provide domain
Can Any one let me know, How to provide domain access to a user. The user should able to create sub-domain but should not modify the domain name.
Please let me know the process.
Please let me know the process.
↧