Posts

SEO Custom URL in Opencart

If your some URLs not working Seo Friendly in Opencart after SEO enabled in Admin settings and do configuration in HTACCESS file for these URL:- http://[Your Domain.com]/index.php?route=checkout/cart   http://[Your Domain.com]/index.php?route=account/register  http://[Your Domain.com]/index.php?route=account/wishlist  http://[Your Domain.com]/index.php?route=checkout/checkout http://[Your Domain.com]/index.php?route=checkout/success http://[Your Domain.com]/index.php?route=simple_blog/article http://[Your Domain.com]/index.php?route=account/login http://[Your Domain.com]/index.php?route=product/special http://[Your Domain.com]/index.php?route=affiliate/account http://[Your Domain.com]/index.php?route=checkout/voucher http://[Your Domain.com]/index.php?route=product/manufacturer http://[Your Domain.com]/index.php?route=account/newsletter http://[Your Domain.com]/index.php?route=account/order http://[Your Domain.com]/index.php?route=account/account http://[Your Domain

Error: Maximum execution time of 30 seconds exceeded

Image
I was facing problem of this error. Since there is two type of cPanel  servers. Apache module ( In  " Apache module ", you can change your PHP settings via a .htaccess file  ) CGI Module (  you can change your local php.ini file in order to make modifications to your PHP setup. php.ini  ) My cPanel Server is  CGI so I tried all the php.ini file by adding these details:-  max_execution_time = 300 max_input_time = 600 memory_limit = 2560M upload_max_filesize = 100M but my problem was not solved. so I tried this rule. I added this code at the top of php script. that running the script for uploading or downloading ini_set('max_execution_time', 300); now my problem is solved.

Opencart Vqmod Attribute,Position

Vqmod Attributes: 1.  attribute "error"  = this is three types  log|skip|abort .  skip  =  skip means it will simply ignore this file. log =  log is the same as skip. but logs the error. (default) abort   =  abort means to log the error and cancel the remaining operations in that particular xml script. 2.  attribute "position"  = this is seven types  before|after|replace|top|bottom|ibefore|iafter .  before  =  before will insert the add data before the search data. after  =  after will insert the add data after the search data replace  =  replace will replace the data in the search tag with the data in the add tag. (default) top  =  top will insert the add data at the top of the file. The search data is ignored. bottom  =  bottom will insert the add data at the bottom of the file. The search data is ignored. ibefore  =  ibefore will insert the code before the search inline instead of the line before iafter  =  iafter will insert the code after

Opencart and Opebay Pro Error with Ebay,Amazon,Etsy, on Viewing Order

Image
I was Getting this error on Viewing Order on Openbay Pro Fatal error: Class 'Controllerpayment' not found in /home/xxxx/public_html/vqmod/vqcache/vq2-system_storage_modification_system_engine_loader.php on line 36 This error was coming Opencart Version 2.1.0.2 . so I found this is opencart default error. and its solution is already given in Openart Latest Version 2.3.02.  It was Default Opencart Error for Openbay Pro. This error has been solved in Opencart Version 2.3.0.2 so I modified the code according to that. See Code Details here OLD CODE: --------------------------------- // Additional Tabs $data['tabs'] = array(); $this->load->model('extension/extension'); $content = $this->load->controller('payment/' . $order_info['payment_code'] . '/order'); if ($content) { $this->load->language('payment/' . $order_info['payment_code']); $data['tabs'][] = array

opencart 2.0.3.1 to 2.3.0.2 upgradation error

I got this error after up-gradation from opencart 2.0.3.1 to 2.3.0.2. Fatal error: Uncaught exception 'Exception' with message 'Error: Could not load model total!' in C:\xampp\htdocs\deleteme\system\engine\loader.php:169 Stack trace: #0 [internal function]: Loader->{closure}(Array, Array) #1 C:\xampp\htdocs\deleteme\system\engine\proxy.php(25): call_user_func_array(Object(Closure), Array) #2 C:\xampp\htdocs\deleteme\catalog\controller\common\cart.php(37): Proxy->__call('getTotal', Array) #3 C:\xampp\htdocs\deleteme\catalog\controller\common\cart.php(37): Proxy->getTotal(Array) #4 [internal function]: ControllerCommonCart->index(Array) #5 C:\xampp\htdocs\deleteme\system\engine\action.php(51): call_user_func_array(Array, Array) #6 C:\xampp\htdocs\deleteme\system\engine\loader.php(24): Action->execute(Object(Registry), Array) #7 C:\xampp\htdocs\deleteme\catalog\controller\common\header.php(129): Loader->controller('common/cart') #8 [inte

cPanel Cron Job || How to use cron job in Cpanel

For Taking Backup of MySQL   mysqldump --opt -Q -u yoursitesqlusername -p' yoursitesqlpassword ' yoursitesqldatabasename > /home/aaromis/backups/databasebackupname_`date +%Y_%m_%d`.sql For Taking Backup of FILES   #!/bin/bash tar czf ~/backups/backup_`date +%Y_%m_%d`.tgz ~/public_html In Cron Job Page Set Email,Unix Command Script File Path,Time ~ /backups/backup.sh   Where backups is foldername and backup.sh is Unix Command Script File name

Magento Help Files and Extension

Turn on the template path hints for frontend & backend by using this extension :-   Easy Template Path Hints (For below Magento Version 2.x) download me   Learning Magento Version 1.8,1.9 Version PDF :-     Magento- Beginner's Guide, 2nd Edition.pdf   download me  ,  Getting Started with Magento Extension Development.pdf   download me Learn Magento Version 2.0 PDF :-     Magento 2 Development Essentials 2016 .pdf   download me