Anyone....? Any and all input would be greatly appreciated! Apologies for "bumping" this - thats not my intention - just looking to get to the bottom of whatever it is that is going on here!
We have also faced the same issue I think there is an "sync" issue with the Magento 2.0.7. Ultimately we have installed module manually.
Now the second part is your server setup error, now you know need to worry we have gone through all mentioned situation and setup server successfully.
It quite long to write here you can get step by step instruction Here
Hi,
Thanks a lot for the feedback! I'll go through that link fully, but the cron jobs part is what I'll talk about first as (in my case) apparently the cron jobs are running per the server at this point, but not according to the Magento 2.0.7 admin panel. . . ..
I did execute the following cron jobs as mentioned in your write up (links obviously changed per my server config): -
* * * * * sudo /usr/bin/php70 -c /etc/opt/remi/php70/php.ini /var/www/html/bin/magento cron:run >> /var/www/html/var/log/magento.cron.log * * * * * sudo /usr/bin/php70 -c /etc/opt/remi/php70/php.ini /var/www/html/update/cron.php >> /var/www/html/var/log/update.cron.log * * * * * sudo /usr/bin/php70 -c /etc/opt/remi/php70/php.ini /var/www/html/bin/magento setup:cron:run >> /var/www/html/var/log/setup.cron.log
I did this via the cpanel cron job utlity, but it did not resolve the issue (or perhaps it's just a bug with Magento - I'm not sure). Will go through the link again though and advise if the steps outlined resolve some of the other issues I'm currently facing. Something else that comes to mind is that hopefully the "powers that be" at Magento will make installation etc a bit easier for those without root and/or shell access . . .
In terms of the manual module installation, how exactly did you do it? I uploaded (after unpacking) the module to my Magento root directory, but no matter what I do, it doesn't seem to be showing in the list of available extensions in Extension Manager . . .is there something I'm missing in terms of config etc?
Thanks again for the response - much appreciated!
Hi,
Glad to hear that its work for you.
For manual installation check the composer.json file. There will name of package and module like:
"psr-4": { "Packagename\\Modulename\\": "" }
Create a directory on app\code\Packagename\Modulename\
paste here all the other directory. In case if there is no any composer.json file check any of the php class file and look at namespace after the namespace keyword two consecutive term is Package name and Module name.
namespace Ipragmatech\Ipreview\Model;
Here Package name : Ipragmatech and Module name: Ipreview
Now from your terminal go to the magento root directory and execute the following command
this will upgrade new module
1. suod php bin/magento setup:upgrade
Now re compile Magento
2. Sudo rm -rf var/di var/generation var/cache 3. sudo php bin/magento setup:di:compile 4. sudo php bin/magento cache:clean 5. sudo chmod 777 -R var/
To check the module go to Store>configuration>advance>advance here your module will be listed.
Please, accept answer if this will help you.