opencart admin panel is not loading properly - opencart

I installed Opencart 3.0.2.0, the admin panel nothing was loaded correctly and not displayed properly. Buttons, icons, bars, pics. Everything is missing. Buttons are not showing and working correctly. How can I solve this problem? Screenshot attached.
Regards
https://i.stack.imgur.com/JLVd5.png
https://i.stack.imgur.com/bV3UW.png
http://i.hizliresim.com/PD07a8.png
http://i.hizliresim.com/6N9Dp9.png

Related

Updating opencart to latest version admin working fine but frontend shows nothing

I successfully update my opencart site using instruction from here http://cartadvisor.com/blog/2013/05/01/how-to-upgrade-an-opencart-store-1-5/
admin Panel is working good, but front end shows nothing, only left sidebar with top nav bar with no css is showing with no links working
I am using opencart Version 1.5.6.1, console is showing no error
Please help me out

Opencart filemanager doesn't work

Opencart 2.0.1.1
Standart Image Manager isn't working.
When I choose some picture, it just opens in the browser, in console I have no errors. Any suggestions?(other functions don't work either, for example reload open image manager without css)
Please someone help)
My js in .tpl doesn't work because my hosting turned on some plugin pagespeed that off scripts in views -_-
Solution:
Add this pagespeed_no_defer="" to script and it will work.

Open cart product page goes blank upon theme upload (vQmod on)

Here's the scenario:
Fresh install of Open Cart. Fresh install of vQmod. Everything is working fine. But when I upload certain theme - purchased and licensed - the site has an issue. The home page is working, but the product page goes blank.
I have tried all possible combinations of OpenCart and vQmod versions (except for 2.0 for OC because the theme doesn't support it yet). I am out of ideas.
Edit: After showing all errors as adviced I finally saw the reason : "oc_product_tab' doesn't exist"
I found a solution. It turned out that the "Extra Product Tabs Opencart Extension" is missing. This is a standart free plugin that comes with template theme but it wasn't configured. It turnes out that the theme works with it.
Go to system>users>user groups and select all for both access and modify. Save. Than go to Catalog menu and click on Extra product tabs. Click Insert and add the module. That’s it. It’s a standard opencart module which is free for use.

Django Debug Toolbar panel click error, undefined

I am using Django 1.3.1, and successfully installed Django Debug Toolbar 0.9.4. When I open my page, I see panel on topright corner, I can open or close it, but when I try to click any of panel (SQL, Time, Templates etc.) details appear for 0.5 seconds and then panel hides and dont appear again, before I refresh page myself. In chromium console I see:
GET http://localhost:8000/razvivayushie-igrushki/c8/undefined 404 (NOT FOUND)
Actual url is http: //localhost:8000/razvivayushie-igrushki/c8/, undefined appends after click on any panel.
I successfully installed debug toolbar before, on many projects, but this error comes for the first time, and I dont know how to fix it. I tried to disable all scripts on page, but that didnt help. Also there are no errors on page.
I appreciate any help.
I found out the solution. I had installed extension in chromium, mine was called VkButton, and it was conflicting. So disabling it solved my problem

Django - raw_id_fields title not refreshing

I am currently having an issue when using the raw_id_field within admin.py in my Django project.
My site's admin area has a number of image upload fields for various different model pages which are all ForeignKey fields to an Image model where all images for the site are stored.
As the site will eventually be dealing with a large quantity of images (100s, maybe 1000s) the default select box would be unusable.
I created various admin.ModelAdmin classes e.g
class InfoSlideAdmin(admin.ModelAdmin):
raw_id_fields=('image',)
These change the image selector within my Edit pages from a Select Box to a Raw ID Field.
However when I select a different image using this control although the ID of the new image is shown the title from the previous image still displays.
Any ideas?
The title is refreshed via Javascript when you close the pop-up window. It's possible that you have some sort of cross-domain issue which is preventing the JS from running - this does sometimes occur when you're running via the development server on eg port 8080.
Have a look at what the console in Firebug is showing you (you are using Firebug to debug Javascript problems, aren't you?).
I do use firebug to debug issues such as this yes. However I normally use the "Net" tab and track which files are being called by the page as it loads. However you can only use the Net tab after a page refresh and this does not occur when using the raw_id control.