Jump to content

Soucis migration prestashop sur un nom de domaine


Recommended Posts

Bonjour, 

 

Je réalise une migration de domaine et de serveur, le back office fonctionne  

 

Voici le problème sur ma page d'accueil 

Erreur 500 

Voici le message quand je mets prestashop via le fichier config en mode développement 

Notice: Use of undefined constant php - assumed 'php' in /home/majoliebes/www/modules/smartoxyaddons/modules/oxy_reassurance.php on line 1

Fatal error: Uncaught Error: Class 'oxy_reassurance' not found in /home/majoliebes/www/modules/smartoxyaddons/smartoxyaddons.php:177 Stack trace: #0 /home/majoliebes/www/modules/smartoxyaddons/smartoxyaddons.php(131): smartoxyaddons::DoAction('addcode') #1 /home/majoliebes/www/classes/Hook.php(587): smartoxyaddons->hookvcBeforeInit(Array) #2 /home/majoliebes/www/classes/Hook.php(542): HookCore::coreCallHook(Object(smartoxyaddons), 'hookvcBeforeIni...', Array) #3 /home/majoliebes/www/modules/jscomposer/jscomposer.php(760): HookCore::exec('vcBeforeInit') #4 /home/majoliebes/www/modules/jscomposer/jscomposer.php(2122): JsComposer->init() #5 /home/majoliebes/www/classes/Hook.php(587): JsComposer->hookDisplayHeader(Array) #6 /home/majoliebes/www/classes/Hook.php(542): HookCore::coreCallHook(Object(JsComposer), 'hookdisplayHead...', Array) #7 /home/majoliebes/www/classes/controller/FrontController.php(579): HookCore::exec('displayHeader') #8 /home/majoliebes/www/controllers/front/IndexController.php(37): FrontControllerCore->in in /home/majoliebes/www/modules/smartoxyaddons/smartoxyaddons.php on line 177

le site qui fonctionne que je suis en train de migrer : http://mabellerobenoire.com

 

le site ou se trouve l'erreur : http://www.majolieboiteadragees.com

 

Merci 

Link to comment
Share on other sites

probablement un fichier édité avec une pelle à tarte. Du coup ça à collé au fond du moule. Ou transféré via FTP en mode guimauve.

 

Ouvre tout simplement ton fichier avec un vrai éditeur (notepad++) et sur la première ligne tu devrais vite voir ce qui ne va pas.

Elle doit être exactement:

<?php

Tout en un mot collé

Link to comment
Share on other sites

LE FICHIER

<?php


//shortcode:  oxy_reassurance


class oxy_reassurance {


    function __construct() {
        JsComposer::add_shortcode('oxy_reassurance', array(&$this, 'shortcode_init'));
    }


    function shortcode_init($atts, $content = null) {


        //$image = '';


        $vc = vc_manager();


        $image = $mask = '';


        $a = JsComposer::shortcode_atts(array(
                    'title' => '100% Fluid Responsive',
                    'class' => '',
                    'subtitle' => '',
                    'img' => '',
                    'content' => '',
                    'button_title' => '',
                    'img_size' => '64x64'
                        ), $atts);






        $img_size = explode('x', $a['img_size']);






        $src = '';


        if ($a['img'] != '') {


            //$src = etheme_get_image($a['img'], $width, $height);


            $src = wpb_getImageBySize(array('attach_id' => $a['img'], 'thumb_size' => $img_size, 'class' => 'img-responsive'));
        }










        return '


<div class="p_content">


   <span class="p_icon pi1">


' . $src['thumbnail'] . ' 


</span>


<span class="p_title"><a href="#" data-reveal-id="oxyModal1">100% Fluid Responsive</a></span>


<span class="p_subtitle">Small subtitle here</span>


</div>


';
    }


    function map_init() {


        $vc = vc_manager();


        $icon_box_params = array(
            'name' => 'Oxy Reassurance',
            'base' => 'oxy_reassurance',
            'icon' => 'icon-wpb-etheme',
            'category' => smartoxyaddons::GetGroup('Oxy Addons'),
            'params' => array(
                array(
                    "type" => "textfield",
                    "heading" => $vc->l("Title", "js_composer"),
                    "param_name" => "title",
                    "description" => $vc->l("Enter Title).", "js_composer")
                ),
                array(
                    "type" => "textfield",
                    "heading" => $vc->l("Sub Title", "js_composer"),
                    "param_name" => "subtitle",
                    "description" => $vc->l("Enter Sub Title).", "js_composer")
                ),
                array(
                    'type' => 'attach_image',
                    "heading" => $vc->l("Icon Image"),
                    "param_name" => "img"
                ),
                array(
                    "type" => "textarea_html",
                    "heading" => $vc->l("Sub Title", "js_composer"),
                    "param_name" => "content",
                    "description" => $vc->l("Enter Sub Title).", "js_composer")
                ),
                array(
                    "type" => "textfield",
                    "heading" => $vc->l("Button Title", "js_composer"),
                    "param_name" => "button_title",
                    "description" => $vc->l("Enter Sub Title).", "js_composer")
                ),
            )
        );






        vc_map($icon_box_params);
    }


}


?>
Link to comment
Share on other sites

  • 2 weeks later...
  • 2 weeks later...

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
×
×
  • Create New...