Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Адаптация с 2,2 на 2,3


Recommended Posts

Искал шаблон для загрузки аватарок в личный кабинет...а он для версии 2,2...нашел инструкцию. Сделал все по ней...в итоге не заходит в сам модуль и ошибка 500

Где тут собака зарыта?)

<?php
class ControllerModuleAvatarsystem extends Controller {
	private $error = array();

	public function index() {
		$this->load->language('extension/module/avatarsystem');

		$this->document->setTitle($this->language->get('heading_title'));

		$this->load->model('setting/setting');

		if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validate()) {
			$this->model_setting_setting->editSetting('avatarsystem', $this->request->post);

			$this->session->data['success'] = $this->language->get('text_success');

			$this->response->redirect($this->url->link('extension/module', 'token=' . $this->session->data['token'], 'SSL'));
		}

		$data['heading_title'] = $this->language->get('heading_title');
		
		$data['text_edit'] = $this->language->get('text_edit');
		$data['text_enabled'] = $this->language->get('text_enabled');
		$data['text_disabled'] = $this->language->get('text_disabled');
    
    $data['entry_defaultavatar'] = $this->language->get('entry_defaultavatar');
    $data['customertabstatus'] = $this->language->get('customertabstatus');
    $data['reviewtabstatus'] = $this->language->get('reviewtabstatus');
    
    $data['entry_avatarwidth'] = $this->language->get('entry_avatarwidth');
    $data['entry_avatarheight'] = $this->language->get('entry_avatarheight');
    $data['entry_avatarpadding'] = $this->language->get('entry_avatarpadding');
		
		$data['entry_status'] = $this->language->get('entry_status');

		$data['button_save'] = $this->language->get('button_save');
		$data['button_cancel'] = $this->language->get('button_cancel');

		if (isset($this->error['warning'])) {
			$data['error_warning'] = $this->error['warning'];
		} else {
			$data['error_warning'] = '';
		}

		$data['breadcrumbs'] = array();

		$data['breadcrumbs'][] = array(
			'text' => $this->language->get('text_home'),
			'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], 'SSL')
		);

		$data['breadcrumbs'][] = array(
			'text' => $this->language->get('text_module'),
			'href' => $this->url->link('extension/module', 'token=' . $this->session->data['token'], 'SSL')
		);

		$data['breadcrumbs'][] = array(
			'text' => $this->language->get('heading_title'),
			'href' => $this->url->link('extension/module/avatarsystem', 'token=' . $this->session->data['token'], 'SSL')
		);

		$data['action'] = $this->url->link('extension/module/avatarsystem', 'token=' . $this->session->data['token'], 'SSL');

		$data['cancel'] = $this->url->link('extension/module', 'token=' . $this->session->data['token'], 'SSL');



		if (isset($this->request->post['avatarsystem_avatarwidth'])) {
			$data['avatarsystem_avatarwidth'] = $this->request->post['avatarsystem_avatarwidth'];
		} else {
			$data['avatarsystem_avatarwidth'] = $this->config->get('avatarsystem_avatarwidth');
		}
    
    if (isset($this->request->post['avatarsystem_avatarheight'])) {
			$data['avatarsystem_avatarheight'] = $this->request->post['avatarsystem_avatarheight'];
		} else {
			$data['avatarsystem_avatarheight'] = $this->config->get('avatarsystem_avatarheight');
		}
    
    if (isset($this->request->post['avatarsystem_avatarpadding'])) {
			$data['avatarsystem_avatarpadding'] = $this->request->post['avatarsystem_avatarpadding'];
		} else {
			$data['avatarsystem_avatarpadding'] = $this->config->get('avatarsystem_avatarpadding');
		}
    
    $query = $this->db->query( "SELECT * FROM information_schema.COLUMNS WHERE TABLE_SCHEMA=DATABASE()
		AND COLUMN_NAME='avatar' AND TABLE_NAME='".DB_PREFIX."customer'");
		if(count($query->rows) <= 0){
			$query = $this->db->query("ALTER TABLE `".DB_PREFIX."customer` ADD COLUMN `avatar` varchar(128) NOT NULL AFTER lastname");
      $data['avatarsystem_istallstatus'] = $this->language->get('text_refresh');
		} else {
      $data['avatarsystem_istallstatus'] = $this->language->get('text_avatarinstall');
      }
    /* для відгуків */  
    $query = $this->db->query( "SELECT * FROM information_schema.COLUMNS WHERE TABLE_SCHEMA=DATABASE()
		AND COLUMN_NAME='avatar' AND TABLE_NAME='".DB_PREFIX."review'");
		if(count($query->rows) <= 0){
			$query = $this->db->query("ALTER TABLE `".DB_PREFIX."review` ADD COLUMN `avatar` varchar(128) NOT NULL AFTER `author`");
      $data['avatarsystem_istallstatusreview'] = $this->language->get('text_reviewrefresh');
		} else {
      $data['avatarsystem_istallstatusreview'] = $this->language->get('text_reviewavatarinstall');
      }  
    /* для відгуків */  
    if (isset($this->request->post['avatarsystem_avatarimage'])) {
			$data['avatarsystem_avatarimage'] = $this->request->post['avatarsystem_avatarimage'];
		} else {
			$data['avatarsystem_avatarimage'] = $this->config->get('avatarsystem_avatarimage');
		}
    
    $this->load->model('tool/image');
 
    if (isset($this->request->post['avatarsystem_avatarimage']) && is_file(DIR_IMAGE . $this->request->post['avatarsystem_avatarimage'])) {
			$data['thumb'] = $this->model_tool_image->resize($this->request->post['avatarsystem_avatarimage'], 100, 100);
		} elseif ($this->config->get('avatarsystem_avatarimage') && is_file(DIR_IMAGE . $this->config->get('avatarsystem_avatarimage'))) {
			$data['thumb'] = $this->model_tool_image->resize($this->config->get('avatarsystem_avatarimage'), 100, 100);
		} else {
			$data['thumb'] = $this->model_tool_image->resize('no_image.png', 100, 100);
		}

		$data['placeholder'] = $this->model_tool_image->resize('no_image.png', 100, 100);
    
		$data['header'] = $this->load->controller('common/header');
		$data['column_left'] = $this->load->controller('common/column_left');
		$data['footer'] = $this->load->controller('common/footer');

		$this->response->setOutput($this->load->view('extension/module/avatarsystem.tpl', $data));
	}

	protected function validate() {
		if (!$this->user->hasPermission('modify', 'extension/module/avatarsystem')) {
			$this->error['warning'] = $this->language->get('error_permission');
		}

		return !$this->error;
	}
}

 

Link to comment
Share on other sites


13 часов назад, buslikdrev сказал:

Ссылка на модуль для желающих (в модификаторе вшита реклама т.к. модуль бесплатный):


Я скачал по ссылке
Это:

  Скрыть контент

$this->response->redirect($this->url->link('extension/module', 'token=' . $this->session->data['token'], 'SSL'));

 

Заменил на это (и выставил права):

  Скрыть контент

$this->response->redirect($this->url->link('extension/extension', 'token=' . $this->session->data['token'] . '&type=module', true));

 

В админке у меня всё хорошо.

  Показать контент

image.thumb.png.d950b1dc9b71ffd1d34943c8e3a44ba8.png

 

Спасибо) А ты кидал по папкам через extension или как было в архиве?

Кидал и туда и туда И все равно 500я страница....

Edited by Crea
Link to comment
Share on other sites


Кинул как было в архиве с изменением одной строчки.

Нажал кнопку сохранить и вылетела ошибка с правами доступа....хотя я выставил доступ для администратора....

Как быть?

Edited by Crea
Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.