Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install Error at 0 % - Log is empty #791

Closed
Crustymd opened this issue Dec 9, 2014 · 36 comments
Closed

Install Error at 0 % - Log is empty #791

Crustymd opened this issue Dec 9, 2014 · 36 comments

Comments

@Crustymd
Copy link

Crustymd commented Dec 9, 2014

So i ahve installed all as it should be, all teh steps till step 6 show now error DB - check goes well.

And when i run it this is what i get. And the log is empty have no idea what to do next. Any help?

http://prntscr.com/5euuld

@Crustymd
Copy link
Author

Crustymd commented Dec 9, 2014

I see the logs of the server and here is what i get

[Tue Dec 09 15:28:53 2014] [error] [client ~] PHP Warning: fopen(): open_basedir restriction in effect. File(/tmp/install.log) is not within the allowed path(s): (/var/www/user/data:.) in /var/www/user/data/www/mysite.com/magento2/setup/module/Magento/Setup/src/Model/WebLogger.php on line 68, referer: http://mysite.com/magento2/setup/
[Tue Dec 09 15:28:53 2014] [error] [client ~] PHP Warning: fopen(/tmp/install.log): failed to open stream: Operation not permitted in /var/www/user/data/www/mysite.com/magento2/setup/module/Magento/Setup/src/Model/WebLogger.php on line 68, referer: http://mysite.com/magento2/setup/
[Tue Dec 09 15:28:53 2014] [error] [client ~] PHP Warning: fseek() expects parameter 1 to be resource, boolean given in /var/www/user/data/www/mysite.com/magento2/setup/module/Magento/Setup/src/Model/WebLogger.php on line 144, referer: http://mysite.com/magento2/setup/
[Tue Dec 09 15:28:53 2014] [error] [client ~] PHP Warning: fgets() expects parameter 1 to be resource, boolean given in /var/www/user/data/www/mysite.com/magento2/setup/module/Magento/Setup/src/Model/WebLogger.php on line 146, referer: http://mysite.com/magento2/setup/
[Tue Dec 09 15:28:53 2014] [error] [client ~] PHP Warning: fclose() expects parameter 1 to be resource, boolean given in /var/www/user/data/www/mysite.com/magento2/setup/module/Magento/Setup/src/Model/WebLogger.php on line 78, referer: http://mysite.com/magento2/setup/

@Crustymd
Copy link
Author

Crustymd commented Dec 9, 2014

Ok so i have tried on local linux with latest php and mysql and here is what i get

So it all finally started .. http://prntscr.com/5ev9nl

BUT

The php is starting to swear at me :D - http://prntscr.com/5evbzd

So i guess there is a bug in the installaion process.. a php issue?

@mazhalai
Copy link
Contributor

mazhalai commented Dec 9, 2014

What version of MySQL do you have? it supports only MySQL 5.6

@Crustymd
Copy link
Author

Crustymd commented Dec 9, 2014

@mazhalai
sudo yum update mysql-server - it took me to 5.5.4 Maximum .. are you sure it only works with 5.6 ?

How do i update it then...

@mazhalai
Copy link
Contributor

mazhalai commented Dec 9, 2014

@Crustymd
Copy link
Author

@mazhalai
Thank you for the reply So i updated php to 5.5 To have better rezults and About the mysql.. I can update it to Mariadb Version 10.0.11 will that be ok? or MySql 5.6 - is a must?

@Crustymd
Copy link
Author

@mazhalai

I have installed MySql 5.6 and i still ahve the same errors...

[Wed Dec 10 14:24:22 2014] [error] [client 46.55.111.162] PHP Warning: fopen(): open_basedir restriction in effect. File(/tmp/install.log) is not within the allowed path(s): (/var/www/alex/data:.) in /var/www/alex/data/www/mysite.com/magento2/setup/module/Magento/Setup/src/Model/WebLogger.php on line 68, referer: http://mysite.com/magento2/setup/
[Wed Dec 10 14:24:22 2014] [error] [client 46.55.111.162] PHP Warning: fopen(/tmp/install.log): failed to open stream: Operation not permitted in /var/www/alex/data/www/m2.bicomplex.md/magento2/setup/module/Magento/Setup/src/Model/WebLogger.php on line 68, referer: http://mysite.com/magento2/setup/
[Wed Dec 10 14:24:22 2014] [error] [client 46.55.111.162] PHP Warning: fseek() expects parameter 1 to be resource, boolean given in /var/www/alex/data/www/mysite.com/magento2/setup/module/Magento/Setup/src/Model/WebLogger.php on line 144, referer: http://mysite.com/magento2/setup/

[Wed Dec 10 14:24:22 2014] [error] [client 46.55.111.162] PHP Warning: fgets() expects parameter 1 to be resource, boolean given in /var/www/alex/data/www/mysite.commagento2/setup/module/Magento/Setup/src/Model/WebLogger.php on line 146, referer: http://mysite.com/magento2/setup/
[Wed Dec 10 14:24:22 2014] [error] [client 46.55.111.162] PHP Warning: fclose() expects parameter 1 to be resource, boolean given in /var/www/alex/data/www/mysite.com/magento2/setup/module/Magento/Setup/src/Model/WebLogger.php on line 78, referer: http://mysite.com/magento2/setup/

@aohorodnyk
Copy link
Contributor

@Crustymd you don't have write permissions for directory /tmp and add write permissions for directories:

magento2/var
magento2/vendor
magento2/pub/static or magento2/pub
magneto2/app/etc
/tmp

and try again

@pavelnovitsky
Copy link

@Crustymd check your open-basedir setting
Setup script writes install.log into the system tmp folder and uses sys_get_temp_dir() for getting tmp directory.

For hosts with settings like

<Virtualhost>
php_admin_value open_basedir /home/user
php_admin_value upload_tmp_dir /home/user/tmp
php_admin_value session.save_path /home/user/tmp
</Virtualhost>

sys_get_temp_dir() is not accurate and still returns /tmp directory

@Crustymd
Copy link
Author

@dropsql

Even if i set the folder and file permission to 777 I still get these errors...

@aohorodnyk
Copy link
Contributor

@pavelnovitsky said about open-basedir, disable this module, or configure it

@Crustymd
Copy link
Author

@dropsql @mazhalai @pavelnovitsky

I have disabled open-basedir and yes installation worked as charm with no error log... But now i can not access front-end or the back-end by the links provieded and the installation finish message

On the front end i just get the message of Appache Test Page
And on the back end link i get the 404 Not Found error...

@aohorodnyk
Copy link
Contributor

@Crustymd I think you have an error in virtualhost, which you configured for magento2, you should check it or send to this issue

@Crustymd
Copy link
Author

@dropsql

This is what's new in the log of the server. p.s. I am installing this on online server Based on CentOS6

[Wed Dec 10 16:56:41 2014] [error] [client 46.55.111.162] File does not exist: /var/www/alex/data/www/mysite.com/m2_min, referer: http://mysite.com/magento2/setup/
[Wed Dec 10 16:57:00 2014] [error] [client 46.55.111.162] Directory index forbidden by Options directive: /var/www/alex/data/www/mysite.com/, referer: http://mysite.com/magento2/setup/
[Wed Dec 10 16:57:00 2014] [error] [client 46.55.111.162] File does not exist: /var/www/icons/powered_by_rh.png, referer: http://mysite.com/
[Wed Dec 10 16:58:09 2014] [error] [client 46.55.111.162] Directory index forbidden by Options directive: /var/www/alex/data/www/mysite.com/, referer: http://mysite.com/magento2/setup/
[Wed Dec 10 16:58:09 2014] [error] [client 46.55.111.162] File does not exist: /var/www/icons/powered_by_rh.png, referer: http://mysite.com/
[Wed Dec 10 16:58:12 2014] [error] [client 46.55.111.162] File does not exist: /var/www/alex/data/www/mysite.com/m2_min, referer: http://mysite.com/magento2/setup/
[Wed Dec 10 17:02:46 2014] [error] [client 46.55.111.162] File does not exist: /var/www/alex/data/www/mysite.com/m2_min
[Wed Dec 10 17:02:59 2014] [error] [client 46.55.111.162] File does not exist: /var/www/alex/data/www/mysite.com/m2_min, referer: http://mysite.com/magento2/setup/
[Wed Dec 10 17:05:38 2014] [error] [client 46.55.111.162] Directory index forbidden by Options directive: /var/www/alex/data/www/mysite.com/, referer: http://mysite.com/magento2/setup/
[Wed Dec 10 17:05:38 2014] [error] [client 46.55.111.162] File does not exist: /var/www/icons/powered_by_rh.png, referer: http://mysite.com/
[Wed Dec 10 17:05:42 2014] [error] [client 46.55.111.162] File does not exist: /var/www/alex/data/www/mysite.com/m2_min, referer: http://mysite.com/magento2/setup/

/m2_min - is the admin root

@aohorodnyk
Copy link
Contributor

@Crustymd I said about virtual host, but you sent logs.
example of virtual host:

<VirtualHost *:80>
    DocumentRoot "/var/www/magento2"
    ServerName magento.dev
    ServerAlias www.magento.dev
    ErrorLog "logs/magento.dev-error.log"
    CustomLog "logs/magento.dev-access.log" common

    <Directory "/var/www/magento2">
        Order allow,deny
        Allow from all
        Options Indexes FollowSymLinks
        AllowOverride All
    </Directory>

    SetEnv MAGE_MODE developer
</VirtualHost>

@Crustymd
Copy link
Author

@dropsql

oh sorry here they are

<VirtualHost 39.153.14.183:81 >
ServerName mysite.com
AssignUserID alex alex
CustomLog /var/www/httpd-logs/mysite.com.access.log combined
DocumentRoot /var/www/alex/data/www/mysite.com
ErrorLog /var/www/httpd-logs/mysite.com.error.log
ServerAdmin email@gmail.com
ServerAlias www.mysite.com
AddType application/x-httpd-php .php .php3 .php4 .php5 .phtml
AddType application/x-httpd-php-source .phps
php_admin_value open_basedir "none"
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f email@gmail.com"
php_admin_value upload_tmp_dir "/var/www/alex/data/mod-tmp"
php_admin_value session.save_path "/var/www/alex/data/mod-tmp"

@pavelnovitsky
Copy link

php_admin_value open_basedir "none"
«none» is wrong value

Try to change it to php_admin_value open_basedir "/var/www/alex/data:.:/tmp:/var/www/alex/data/mod-tmp"

it's not optimal, but can help to locate problem

@aohorodnyk
Copy link
Contributor

@Crustymd
Copy link
Author

@dropsql

it is diabed already... Or the fact that it has value none does not mean it is disabled? i dont really understand why you gave me this link..

@Crustymd
Copy link
Author

@dropsql

I dont think that DISABLE-ing the open_basedir is a good idea. As for installation is written that went with succes but i look at the folder and i see inside the setup or the domain itself NO changes or new files.

It creates impression that the installation process did not get errors but it did not have a directory to install things to because the base directory has the value "none"

@Crustymd
Copy link
Author

@pavelnovitsky

That was actually the value it had BEFORE i set the value to none. With the value you tell me to put it did not work :)

@Crustymd
Copy link
Author

Well guys i have no more idea what could this be, so i can't do anything more then just wait for a solution or idea from you. Thank you

@mazhalai
Copy link
Contributor

Your log says Directory index forbidden by Options directive: can you check you httpd.conf or .htaccess files.

@Crustymd
Copy link
Author

@mazhalai

Chech for what exactly? Sorry am tired ao i dont follow ur idea

@mazhalai
Copy link
Contributor

Look for presence of Options -Indexes in those files. Change it to Options Indexes and then restart apache and try again.

@Crustymd
Copy link
Author

@mazhalai

So i found about Options and Indexes in the httpd.conf:

#<Directory /home/*/public_html>
#    AllowOverride FileInfo AuthConfig Limit
#    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
#    <Limit GET POST OPTIONS>
#        Order allow,deny
#        Allow from all 
#    </Limit>
#    <LimitExcept GET POST OPTIONS>
#        Order deny,allow
#        Deny from all
#    </LimitExcept>
#</Directory>

<Directory "/var/www/icons">
    Options Indexes MultiViews FollowSymLinks

<Directory /var/www/alex/data/www/mysite.com>
    Options -ExecCGI -Includes
    php_admin_value open_basedir "none"
    php_admin_flag engine on
</Directory>

And in the .htaccess i found none...

@mazhalai
Copy link
Contributor

Options -ExecCGI -Includes it has the - sign. Please remove that and try again.

@Crustymd
Copy link
Author

@mazhalai

ok i have removed and here it is the new error ))

http://prntscr.com/5fme4n

And the error log:

[Thu Dec 11 18:50:20 2014] [error] [client 46.55.111.162] File does not exist: /var/www/alex/data/www/mysite.com/favicon.ico
[Thu Dec 11 18:51:56 2014] [error] [client 46.55.111.162] Directory index forbidden by Options directive: /var/www/alex/data/www/mysite.com/
[Thu Dec 11 18:51:56 2014] [error] [client 46.55.111.162] File does not exist: /var/www/icons/powered_by_rh.png, referer: http://mysite.com/
[Thu Dec 11 18:52:51 2014] [error] [client 46.55.111.162] Directory index forbidden by Options directive: /var/www/alex/data/www/mysite.com/
[Thu Dec 11 18:52:51 2014] [error] [client 46.55.111.162] File does not exist: /var/www/icons/powered_by_rh.png, referer: http://mysite.com/

@mazhalai
Copy link
Contributor

2 options now to see the error:

  1. go to <magento root folder>\var\report and look for a file with the same number and open it to read error.
    OR
  2. enable developer mode in apache's conf file or .htaccess SetEnv MAGE_MODE "developer" , restart apache and reload page.

@Crustymd
Copy link
Author

I have done point 1 and here it is

a:4:{i:0;s:116:"Failed to set ini option "session.save_path" to value "/var/www/user/data/www/mysite.com/magento2/var/session/". ";i:1;s:8829:"    #0 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/Session/SessionManager.php(180): Magento\Framework\Session\SessionManager->initIniOptions()
#1 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/Session/Generic.php(60): Magento\Framework\Session\SessionManager->start()
#2 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/Factory/AbstractFactory.php(126): Magento\Framework\Session\Generic->__construct(Object(Magento\Framework\App\Request\Http), Object(Magento\Framework\Session\SidResolver\Proxy), Object(Magento\Framework\Session\Config), Object(Magento\Framework\Session\SaveHandler), Object(Magento\Framework\Session\Validator), Object(Magento\Framework\Session\Storage), Object(Magento\Framework\Stdlib\Cookie\PhpCookieManager), Object(Magento\Framework\Stdlib\Cookie\CookieMetadataFactory))
#3 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Developer.php(109): Magento\Framework\ObjectManager\Factory\AbstractFactory->createObject('Magento\\Framewo...', Array)
#4 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/ObjectManager.php(87): Magento\Framework\ObjectManager\Factory\Dynamic\Developer->create('Magento\\Framewo...')
#5 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/Factory/AbstractFactory.php(194): Magento\Framework\ObjectManager\ObjectManager->get('Magento\\Framewo...')
#6 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Developer.php(71): Magento\Framework\ObjectManager\Factory\AbstractFactory->resolveArgument(Array, 'Magento\\Framewo...', NULL, 'session', 'Magento\\Store\\A...')
#7 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Developer.php(102): Magento\Framework\ObjectManager\Factory\Dynamic\Developer->_resolveArguments('Magento\\Store\\A...', Array, Array)
#8 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/ObjectManager.php(87): Magento\Framework\ObjectManager\Factory\Dynamic\Developer->create('Magento\\Store\\A...')
#9 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/Factory/AbstractFactory.php(194): Magento\Framework\ObjectManager\ObjectManager->get('Magento\\Framewo...')
#10 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Developer.php(71): Magento\Framework\ObjectManager\Factory\AbstractFactory->resolveArgument(Array, 'Magento\\Framewo...', NULL, 'redirect', 'Magento\\Framewo...')
#11 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/Factory/Dynamic/Developer.php(102): Magento\Framework\ObjectManager\Factory\Dynamic\Developer->_resolveArguments('Magento\\Framewo...', Array, Array)
#12 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/ObjectManager/ObjectManager.php(74): Magento\Framework\ObjectManager\Factory\Dynamic\Developer->create('Magento\\Framewo...', Array)
#13 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/App/ActionFactory.php(56): Magento\Framework\ObjectManager\ObjectManager->create('Magento\\Framewo...', Array)
#14 /var/www/user/data/www/mysite.com/magento2/app/code/Magento/Core/App/Router/Base.php(313): Magento\Framework\App\ActionFactory->create('Magento\\Cms\\Con...', Array)
#15 /var/www/user/data/www/mysite.com/magento2/app/code/Magento/Core/App/Router/Base.php(174): Magento\Core\App\Router\Base->matchAction(Object(Magento\Framework\App\Request\Http), Array)
#16 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/App/FrontController.php(59): Magento\Core\App\Router\Base->match(Object(Magento\Framework\App\Request\Http))
#17 [internal function]: Magento\Framework\App\FrontController->dispatch(Object(Magento\Framework\App\Request\Http))
#18 /var/www/user/data/www/mysite.com/magento2/var/generation/Magento/Framework/App/FrontController/Interceptor.php(48): call_user_func_array(Array, Array)
#19 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/Interception/Chain/Chain.php(83): Magento\Framework\App\FrontController\Interceptor->___callParent('dispatch', Array)
#20 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/Interception/Chain/Chain.php(76): Magento\Framework\Interception\Chain\Chain->invokeNext('Magento\\Framewo...', 'dispatch', Object(Magento\Framework\App\FrontController\Interceptor), Array, 'requestPreproce...')
#21 /var/www/user/data/www/mysite.com/magento2/app/code/Magento/Store/App/FrontController/Plugin/RequestPreprocessor.php(106): Magento\Framework\Interception\Chain\Chain->Magento\Framework\Interception\Chain\{closure}(Object(Magento\Framework\App\Request\Http))
#22 [internal function]: Magento\Store\App\FrontController\Plugin\RequestPreprocessor->aroundDispatch(Object(Magento\Framework\App\FrontController\Interceptor), Object(Closure), Object(Magento\Framework\App\Request\Http))
#23 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/Interception/Chain/Chain.php(81): call_user_func_array(Array, Array)
#24 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/Interception/Chain/Chain.php(76): Magento\Framework\Interception\Chain\Chain->invokeNext('Magento\\Framewo...', 'dispatch', Object(Magento\Framework\App\FrontController\Interceptor), Array, 'install')
#25 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/Module/Plugin/DbStatusValidator.php(93): Magento\Framework\Interception\Chain\Chain->Magento\Framework\Interception\Chain\{closure}(Object(Magento\Framework\App\Request\Http))
#26 [internal function]: Magento\Framework\Module\Plugin\DbStatusValidator->aroundDispatch(Object(Magento\Framework\App\FrontController\Interceptor), Object(Closure), Object(Magento\Framework\App\Request\Http))
#27 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/Interception/Chain/Chain.php(81): call_user_func_array(Array, Array)
#28 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/Interception/Chain/Chain.php(76): Magento\Framework\Interception\Chain\Chain->invokeNext('Magento\\Framewo...', 'dispatch', Object(Magento\Framework\App\FrontController\Interceptor), Array, 'front-controlle...')
#29 /var/www/user/data/www/mysite.com/magento2/app/code/Magento/PageCache/Model/App/FrontController/VarnishPlugin.php(72): Magento\Framework\Interception\Chain\Chain->Magento\Framework\Interception\Chain\{closure}(Object(Magento\Framework\App\Request\Http))
#30 [internal function]: Magento\PageCache\Model\App\FrontController\VarnishPlugin->aroundDispatch(Object(Magento\Framework\App\FrontController\Interceptor), Object(Closure), Object(Magento\Framework\App\Request\Http))
#31 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/Interception/Chain/Chain.php(81): call_user_func_array(Array, Array)
#32 /var/www/user/data/www/mysite.com/magento2/var/generation/Magento/Framework/App/FrontController/Interceptor.php(90): Magento\Framework\Interception\Chain\Chain->invokeNext('Magento\\Framewo...', 'dispatch', Object(Magento\Framework\App\FrontController\Interceptor), Array, 'front-controlle...')
#33 /var/www/user/data/www/mysite.com/magento2/app/code/Magento/PageCache/Model/App/FrontController/BuiltinPlugin.php(90): Magento\Framework\App\FrontController\Interceptor->Magento\Framework\App\FrontController\{closure}(Object(Magento\Framework\App\Request\Http))
#34 [internal function]: Magento\PageCache\Model\App\FrontController\BuiltinPlugin->aroundDispatch(Object(Magento\Framework\App\FrontController\Interceptor), Object(Closure), Object(Magento\Framework\App\Request\Http))
#35 /var/www/user/data/www/mysite.com/magento2/var/generation/Magento/Framework/App/FrontController/Interceptor.php(95): call_user_func_array(Array, Array)
#36 /var/www/user/data/www/mysite.com/magento2/var/generation/Magento/Framework/App/FrontController/Interceptor.php(119): Magento\Framework\App\FrontController\Interceptor->___callPlugins('dispatch', Array, Array)
#37 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/App/Http.php(141): Magento\Framework\App\FrontController\Interceptor->dispatch(Object(Magento\Framework\App\Request\Http))
#38 /var/www/user/data/www/mysite.com/magento2/lib/internal/Magento/Framework/App/Bootstrap.php(263): Magento\Framework\App\Http->launch()
#39 /var/www/user/data/www/mysite.com/magento2/index.php(43): Magento\Framework\App\Bootstrap->run(Object(Magento\Framework\App\Http))
#40 {main}";s:3:"url";s:10:"/magento2/";s:11:"script_name";s:19:"/magento2/index.php";}

@mazhalai
Copy link
Contributor

Please see solution in #663

@Crustymd
Copy link
Author

@mazhalai
my session.auto_start in php.ini was set to 0; So it's not this issue

@mazhalai
Copy link
Contributor

@Crustymd is your var/sessions folder writable by apache user?

@buskamuza
Copy link
Contributor

@Crustymd , do you still have this issue?

@Crustymd
Copy link
Author

I will check it on morning. Thank you. Sorry was abroad

@maksek
Copy link
Contributor

maksek commented Jan 8, 2015

@Crustymd ticked is closed due inactivity more then 2 weeks. If you still having the issue - feel free to reopen.

@maksek maksek closed this as completed Jan 8, 2015
mmansoor-magento pushed a commit that referenced this issue Feb 2, 2017
MAGETWO-58596: Remove uses of unserialize in Module_Widget
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

7 participants