PrestaShop CMS Bug - content-management-system

I installed PrestaShop on the localhost.
I followed instructions from YouTube tutorial (watch?v=60_jitU6jbM)
Everything seems to be alright except the one thing.
Some of PrestaShop (1.7.6) CMS dropdowns are bugged and not responsive.
Where is the root of a problem? How to fix this?
Image of issue:

Open the browser's devtools and check the console tab for some red colored messages; if any post them.

Related

Backend page load and WYSIWYG issue after updating Magento 2

We have upgraded from 2.3.2 to 2.4.1 but are experiencing an issue in admin where sometimes you have to refresh the page for it to fully load, the menu on the left does not work when you click the icons and the WYSIWYG does not load. Have checked permissions and tried updating a few of the bigger modules to the latest version, but no luck.
Had anyone experienced the same issue?
I have posted console errors here https://ibb.co/R4LWWGD
There might be a module that still uses the old version of tinymce
grep -rnw 'app/code' -e 'tinymce'
If there's nothing in your code namespace, try and grep the whole codebase plus vendor.
The library instanced in the wysiwyg is now mapped to 'tinymce4', see:
vendor/magento/module-ui/view/base/requirejs-config.js
It might not be enough to simply add the 4, depends what the module does if that's the issue. I'll also go ahead on the presumption that you've already re-deployed statics or that you're in developer mode.
For the stylesheet refusal to load, you'll have to whitelist googleapi's domain for the style-src policy, here's the devdocs to it.

Github UI is messed up

I am having a weird issue and I'm not sure if this should go here or on another website.
When I open a file on github I get this strange UI:
From there if I try and edit a file I just get a blank white page.
I am using chrome and tried using incognito but I got the same results there.
I don't reproduce that on the latest Chrome or Firefox for naguibihab/postman-tests.
So in your case, a cache issue or an extra plugin might be the cause, but there is no issue on the GitHub side.

Locate NetSuite Outlook integration plugin download link

We recently installed the Outlook bundle in NetSuite, however the link to actually download the addon for Outlook never displays. Any idea how to get this to show up?
The link should show up in the Settings portlet on your Home Screen.
Here are the direct links to the the download page and installer:
https://system.netsuite.com/app/external/xml/outlook/outlookv3download.nl
https://system.netsuite.com/core/media/media.nl?id=429&c=3563537&h=7c09acb0c6ba5104ac0d&_xt=.bin
You said:
We attempted using these links after confirming we followed all setup steps correctly and still failed to see the downloads. Unfortunately still ran into an issue with .Net & VB Tools during install. Perhaps there is an issue with Win10?
Did Netsuite move your data center? If so then the link would be:
https://system.na?.netsuite.com/app/external/xml/outlook/outlookv3download.nl
Replace the ? with your regional data center number. Worked for me.

Joomla 3.0 SEF URLs sending to random wrong articles

My site eighttwentydesign is running Joomla 3.0. I have SEF URLs on, and have done for sometime without issue. But today when you go to the site, and click on anything, say portfolio you get the home page under the portfolio's URL, but if you add a leading slash at the end, the right article (portfolio) shows. Additionally, if you click on say "Web Design" it sends you to the Portfolio page. I might add this menu is a menu within Joomla - not be adding internal links manually
Doesn't work: http://www.eighttwentydesign.com/portfolio
Does work: http://www.eighttwentydesign.com/portfolio/
I have checked the .htaccess, and actually reverted it to the original with no luck, I have check Global Config but I can't see anything which may cause this. It was working nicely yesterday. I haven't adapted with any PHP source or anything in the past few weeks, the only notifiable thing I have done is yesterday enabling the Cache - have others experienced problems after doing this? I have disabled it under global config, with no avail.
Exact Joomla Version is 3.0.2 with very few plugins
I do have daily backups, but would rather a solution and be able to figure out a prevention from that, rather than just putting on a band aid.
I've search for a good couple of hours, and aside from just not being able to fix it, it appears no one else is experiencing this, so I am starting to think it may be a bug.
Just as I was about to post this I discovered my solution.
If you are having your SEF URLs display the wrong content then solve it by disabling the Cache plugin. You can do this by doing the following steps
Login to Joomla backend
Navigate to Extensions > Plugins
Go to "System Cache"
Disable system cache
I hope this helps someone in the future as I really struggled to find any answers on this.

Umbraco - Unable to navigate to sections other than Content after upgrade to 4.5.2

I've tried posting this on the Umbraco forums to no avail. Hoping to find some help here.
I thought I upgraded successfully from 4.0.4.2 to 4.5.2 (on my way to 4.8...) as I received no errors and everything seemed to go smoothly. However, in the backoffice, when I click on any section other than Content, I get redirected back to Content. I can manually reach each section by typing in the name of it after the # sign like: #media, but as soon as I click on a tree item, it redirects me back to Content. Any ideas would be appreciated.
2 thoughts:
You're cacheing some of the old javascript in your browser. Try clearing your cache. IE can be stubborn in this regard; preferably try in Chrome.
Personally, if your site is working under 4.5.2, I wouldn't sweat the back office issue and just continue with the upgrade to 4.8.1. There will likely be new problems to solve there anyway :) and the backoffice issue may go away.
Updating the icons via the following script fixed this problem. Links must run off the appIcon field. Not sure why this is not executed when the database is updated via the 4.5.2 upgrade.
update umbracoApp
set appIcon = '.tray' + appAlias
where appAlias IN ('content','media','users','settings','developer','member')