Posts by DragonZX
-
-
I saw it before, but it didn't help. I did it again - no changes
UPD: But any new domains are creating well. -
Hello, as usual debian 7.4, upgrading from i-mscp 1.1.0 to 1.1.3
Panel is tuned to be accessable from https.
Problem is: Any clients' domain (without SSL) are redirecting to its https, which is redirecting to the panel's login page.
Downgrading, -r, -d doesn't helps -
Ерфе package was installed, but in the wrong way, reinstallation helps me thank you.
-
Debian 7.4 i-MSCP 1.1.0 I can't delete subdomains of alias. After deletion it has status "Unavaliable"
In the debugger:
Servers::named::bind::addSub: Unable to install sunlife-fm.com.db
for each domain.
After forcing execution we have record in the i-MSCP Daemon tools to execute, but it's changing nothing. -
Updating from Raring to saucy first due apt-get update&&apt-get dist-upgrade - No errors, removed kernels exept 3.11.0-15
next
mkdir -p /usr/local/src
cd /usr/local/src
aptitude update && aptitude safe-upgrade
wget https://github.com/i-MSCP/imscp/archive/1.1.0.tar.gz
tar xvfz 1.1.0.tar.gz
cd imscp*
perl imscp-autoinstall
also
perl imscp-autoinstall -r (the same error)
perl imscp-autoinstall -d (the same error)
Mysql 5.5 -
-
А если проблема втупую в том, что кодировка не-utf-8? Поидее же без разницы какие символы ему обрабатывать?
[hr]
Другой вопрос куда лучше писать шаболны - в строгий сектор или куда еще... А может вообще сделать сектор под названием IDN... Там же вплоть до арабской вязи. -
ну конечно-же
http://www.debian-administration.org/articles/284
Ну ты загнул
http://wiki.enchtex.info/howto/nginx_ssl
Не больше... и на вопросики поотвечать) Конфигурация nginx опускается) -
Вот начинается в той же строке 20
Code- function _validates_tld($tld)
- {
- $cfg = iMSCP_Registry::get('config');
- global $validation_err_msg;
- $validation_err_msg = tr('Wrong Top Level Domain syntax: <b>%s</b>', $tld);
- $matches = array();
- if ($cfg->TLD_STRICT_VALIDATION) {
- // This pattern Matches only Top Level Domain listed in Iana root database
- // ( only ccTLDs and gTLDs, not IDNs )
- // TRUE if the TLD syntax and length is correct
- // TRUE with $matches[1] set if the TLD length is wrong
- // FALSE if the TLD syntax is wrong
- $pattern =
- '@^(?:
- (?:a[cdefgilmnoqrstuwxz]|aero|asia)|
- (?:b[abdefghijlmnorstvwyz]|biz)|
- (?:c[acdfghiklmnoruvxyz]|cat|com|coop)|
- d[ejkmoz]|
- (?:e[ceghrstu]|edu)|
- f[ijkmor]|
- (?:g[abdefghilmnpqrstuwy]|gov)
- |h[kmnrtu]|
- (?:i[delmnoqrst]|info|int)|
- (?:j[emop]|jobs)|
- k[eghimnprwyz]|
- l[abcikrstuvy]|
- (?:m[acdefghklmnopqrstuvwxyz]|mil|mobi|museum)|
- (?:n[acefgilopruz]|name|net)|
- (?:om|org)|
- (?:p[aefghklmnrstwy]|pro)|
- qa|
- r[eosuw]|
- s[abcdeghijklmnortuvyz]|
- (?:t[cdfghjklmnoprtvwz]|tel|travel)|
- u[agkmsyz]|
- v[aceginu]|
- w[fs]|
- y[et]|
- z[amw]|
- рф|
- укр|
- бг|
- блог|
- қаз|
- io|
- MD|
- ([a-z]|[a-z]{7,})
- )$@ix';
- } else {
- // This pattern matches only realistic TLDs (i.e. those with 2 to 6 letters) - Not strict.
- // TRUE if the TLD syntax and length is correct
- // TRUE with $matches[1] set if the TLD length is wrong
- // FALSE if the TLD syntax is wrong
- $pattern = '@^(?:[a-z]{2,6}|([a-z]|[a-z]{7,}))$@';
- }
- if (($ret = preg_match($pattern, $tld, $matches)) && array_key_exists(1, $matches)) {
- $validation_err_msg = tr('Wrong Top Level Domain length: <b>%s</b>', $tld);
- $ret = false;
- }
- return (bool)$ret;
- }
Фишка в том, что файлик этот как раз зенда и мне было сказано что в нем ничего не собираются менять.