This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setup:upgrade | |
Installation issue: Cache cleared successfully | |
File system cleanup: | |
/var/www/html/var/generation/Composer | |
The directory "/var/www/html/var/generation/Composer/Console" cannot be deleted Warning!rmdir(/var/www/html/var/generation/Composer/Console): Directory not empty | |
/var/www/html/var/generation/Magento | |
The directory "/var/www/html/var/generation/Magento/AdminNotification/Controller/Adminhtml/Notification/AjaxMarkAsRead" cannot be deleted Warning!rmdir(/var/www/html/var/generation/Magento/AdminNotification/Controller/Adminhtml/Notification/AjaxMarkAsRead): Directory not empty | |
/var/www/html/var/generation/Symfony | |
The directory "/var/www/html/var/generation/Symfony/Component/Console/Input" cannot be deleted Warning!rmdir(/var/www/html/var/generation/Symfony/Component/Console/Input): Directory not empty | |
/var/www/html/var/di/plugins.ser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ php bin/magento setup:di:compile | |
Compilation was started. | |
Interception cache generation... 6/7 [========================>---] 85% 6 mins 297.8 MiBErrors during compilation: | |
Mageplaza\SeoCrosslinks\Controller\Adminhtml\Term\Edit | |
Incorrect dependency in class Mageplaza\SeoCrosslinks\Controller\Adminhtml\Term\Edit in D:/xampp56/htdocs/ce216/app/code/Mageplaza/SeoCrosslinks/Controller/Adminhtml/Term/Edit.php | |
\Magento\Backend\Model\Session already exists in context object | |
\Magento\Backend\Model\View\Result\RedirectFactory already exists in context object | |
Mageplaza\SeoCrosslinks\Controller\Adminhtml\Term\Save | |
Incorrect dependency in class Mageplaza\SeoCrosslinks\Controller\Adminhtml\Term\Save in D:/xampp56/htdocs/ce216/app/code/Mageplaza/SeoCrosslinks/Controller/Adminhtml/Term/Save.php | |
\Magento\Backend\Model\Session already exists in context object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$pattern = '/{{([a-zA-Z]{0,10})(.*?)}}/si'; | |
$string = '{{product.name}} aaa {{Product.sku}} aa444a {{Product.price}}'; | |
preg_match_all($pattern, $string, $matches); | |
$helper = new helper(); | |
if(isset($matches[0]) && is_array($matches[0])){ |
{{block class="Mageplaza\BetterSlider\Block\Slider" template="Mageplaza_BetterSlider::slider.phtml" banner_id="1" }}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- | |
* Mageplaza | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the Mageplaza.com license that is | |
* available through the world-wide-web at this URL: | |
* http://mageplaza.com/license-agreement/ | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add code to template file | |
<?php echo $this->getLayout()->createBlock("Mageplaza\Sociallogin\Block\Buttons")->setTemplate("Mageplaza_Sociallogin::buttons.phtml")->setSocialNetworks('Google,Yahoo,Facebook')->toHtml(); ?> | |
You can put a social login button block on a CMS page | |
{{block class="Mageplaza\Sociallogin\Block\Buttons" name="buttons.sociallogin" template="Mageplaza_Sociallogin::buttons.phtml" social_networks="Google,Yahoo,Facebook"}} | |
Please copy and paste the code below to one of xml layout files where you want to show the social button block. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.mpcss{/*! | |
* Bootstrap v3.3.4 (http://getbootstrap.com) | |
* Copyright 2011-2015 Twitter, Inc. | |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
*/} | |
.mpcss html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.mpcss body{margin:0}.mpcss article,.mpcss aside,.mpcss details,.mpcss figcaption,.mpcss figure,.mpcss footer,.mpcss header,.mpcss hgroup,.mpcss main,.mpcss menu,.mpcss nav,.mpcss section,.mpcss summary{display:block}.mpcss audio,.mpcss canvas,.mpcss progress,.mpcss video{display:inline-block;vertical-align:baseline}.mpcss audio:not([controls]){display:none;height:0}.mpcss [hidden],.mpcss template{display:none}.mpcss a{background-color:transparent}.mpcss a:active,.mpcss a:hover{outline:0}.mpcss b,.mpcss strong{font-weight:700}.mpcss dfn{font-style:italic}.mpcss h1{margin:.67em 0}.mpcss mark{background:#ff0;color:#000}.mpcss sub,.mpcss sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.mpcss sup{top:-.5em}.mpcss sub{bottom |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Install server | |
apt-get update | |
apt-get upgrade | |
apt-get install apache2 mysql-server mysql-client php5 libapache2-mod-php5 php5-mysql php5-mcrypt php5-cgi php5-cli php5-common php5-curl php5-dbg php5-gd php5-gmp php5-ldap php5-odbc php5-pgsql php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl php5-adodb proftpd phpmyadmin libcupsys2 samba samba-common -y | |
apt-get install apache2 mysql-server mysql-client php5 libapache2-mod-php5 php5-mysql php5-mcrypt php5-cgi php5-cli php5-common php5-curl php5-dbg php5-gd php5-gmp php5-ldap php5-odbc php5-pgsql php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl php5-adodb phpmyadmin -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<pre>Zend_Db_Statement_Exception Object | |
( | |
[_previous:Zend_Exception:private] => | |
[message:protected] => SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '3-lunar_menulink' for key 'UNQ_EAV_ATTRIBUTE_ENTITY_TYPE_ID_ATTRIBUTE_CODE' | |
[string:Exception:private] => | |
[code:protected] => 23000 | |
[file:protected] => /home/lunartxs/domains/lunar2t1.xstore.co.il/public_html/lib/Zend/Db/Statement/Pdo.php | |
[line:protected] => 234 | |
[trace:Exception:private] => Array |
NewerOlder