I am new to Opencart. I have 3 stores on one opencart platform and custom sitemap.xml file for each store. Any help would be appreciated in uploading/setting them.
so what problem? every multistore have one database and 3 folder with store files, and home directory have sitemap.
Related
I am working on a website on Opencart with the journal theme and i'm trying to add a preloader to it do you know what files to edit to insert it?
i tried to look for it into the /catalog/view/theme/journal3/template/journal3
You can add your code to
catalog/view/theme/journal3/template/common/header.twig
but you should make your modification as ocmod file and upload it to the system throuth modification part in the admin panel.
You may have a look at this article about ocmod in opencart3:
https://webocreation.com/blog/opencart-3-ocmod-coding-tutorial/
I have a simple ocmod.xml for my opencart 2.3 application.
I've uploaded the changes but now I need to modify it.
Instead of reinstalling the new version, how can I quickly modify it and refresh modification during development?
Where is the file located?
If you uploaded the file via the admin end then it will be stored in your MySQL database. Under modifications table in the database and the xml row in the table you will see it. If you edit it there then clear and refresh the modifications you will see the changes.
You can also do it we try a new miss called an ocmod manager. This all is you to edit from admin for opencart 2x or for opencart 3x
After upgrading a website from opencart 1.5 to 2.3 I can't see the old uploaded images in file manager. My files are in /images/data/... while the file manager loads on /images/catalog/ and doesn't let me access any files beyond this folder. Is there a way to change the default location for file manager?
Luckily the older products still have the right links to their images, but since any new will have to be stored under /catalog directory, I will not be able to upload any new ones to already well made file structure.
admin/config.php will give you the directory of your image files, you can also change it to point at the correct location.
I'm trying to use Wagtail, the Django CMS. The images uploaded via the admin interface all go to the same place and it seems there is no way to organize images except by tagging them. Is there any way to organize them into folders or to search for them by date uploaded?
Furthermore, the search function for the images at least on the Wagtail demo installation, does not pull up any results if searching by the tag name (it does work with the search term in the title field).
Any suggestions for how to organize images in Wagtail would be appreciated!
Wagtail 1.4 introduced the concept of Collections which was their way of address this need:
Images and documents can now be organised into collections, set up by
administrators through the Settings -> Collections menu item. User
permissions can be set either globally (on the ‘Root’ collection) or
on individual collections, allowing different user groups to keep
their media items separated.
Don't think you can search by tag though...
If you need more than a flat folder structure, there is also this project:
https://github.com/anteatersa/Wagtail-Image-Folders
which is a replacement for the built-in wagtailimages app. I haven't tried it myself though.
Am very new to magento, created one site using magento. All the functionality are working fine in localhost. When am upload that code into online(server), i got one issue. except that all functionality are working fine.
While am uploading an image i got the issue "Unable to create directory".
Images are uploading to tmp path but not moving to target path. Because when am press the button 'upload files', I can able to see the upload percentages. That is why am thing the files are not moving due to dynamic directory creation fails.
I have tried lot but i can't able to make it as work.
I had tried the following solution,
1. Changed the media file permission to 777.
2. Created one tmp directory under /var/ directory and assigned manually in as tmp directory by change the line 91 of lib/Zend/Cache/Backend/File.php ('cache_dir' => null to 'cache_dir' => 'var/tmp').
3. Changed the php.ini file under the magento root directory.
Newly added lines are,
magic_quotes_gpc = off
short_open_tag = on
extension=pdo.so
extension=pdo_mysql.so
4. Checked whether GD library installed or not. It was installed.
5. Changed scope attribute in Magento admin panel -> Catalog -> Attributes -> Manage attributes. After this you should find image, small_image & thumbnail attributes. Then am changed all these attributes scope to Global.
Many thanks in advance. Please share your thoughts. Feel free to post your comment also.
Finally I got solution at 22-Aug-2014.
Problem is PHP version issue, megento need php 5.2.13 but my server contains php 5.2.12
After updated php version, image upload working fine.