Posts

How can I print all value of an array in smarty template in prestashop

use this below code you can print it easily <pre> {$variablename|@print_r} </pre>

add google map without api or embed google map using php code

we can add google map without using API or embed google map. Benefit:- No need to get headache for google map API Loss:- it will show the only map. it will not show the marker on the map. here is the given below code <iframe width="100%" height="auto" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.it/maps?q= <?php echo $location; ?> &output=embed"></iframe> where $location is the address that will come through PHP or you can directly put a static

Cant use dump() function in twig files or how to enable debug in opencart twig or print_r alternate use dump() in opencart 3.0

if you are facing the following problem. Cant use dump() function in twig files  or  how to enable debug in opencart twig  or  print_r alternate use dump() in opencart 3.0 for fixing this problem follow these steps You can activate dump() function for twig environment by following these steps in opencart 3.0 : Go to system/library/template/Twig/Environment.php Here in the constructor function, you can find $options array . Set 'debug' option to 'true' . Now we need to include debug extension, so add $this->addExtension(new Twig_Extension_Debug()); below. Now you can use  {{ dump(your_variable_name) }} as print_r variable in php That's all 😅😆😛

getting error on table create on database migration in laravel

your error can be something like this:-  Syntax error or access violation:1071 Specified key was too long; max key length is 767 bytes  if you facing problem in creating table using database migration in laravel then follow the steps:- Go to app -> Providers -> Edit  AppServiceProvider.php Add given below line after  use Illuminate\Support\ServiceProvider; use Illuminate\Support\Facades\Schema;      3. add this line  Schema::defaultStringLength(191);   in this given below function     public function boot()     {              } Now you can run your database migration by this command 😅 php artisan migrate

Wordpress WooCommerce Shop page contains the following hooks:

Image
woocommerce_before_main_content woocommerce_archive_description woocommerce_before_shop_loop woocommerce_before_shop_loop_item woocommerce_before_shop_loop_item_title woocommerce_shop_loop_item_title woocommerce_after_shop_loop_item_title woocommerce_after_shop_loop_item woocommerce_after_shop_loop woocommerce_after_main_content ----------------------------------------------------

How to open cPanel using WHM access.

Image
Login into your WHM Page Click on Account Information in Dashboard Click on List Accounts Now here you will see your listed website. Click on cPanel icon  on which cPanel you want to open your site.It will redirect to your site cPanel Page without login information. That's it Enjoy!!!

Opencart version 3.0.2.0 session logout issue

/Hey This is the problem detail written by someone else. ----------------------------------- I'm running my new online store on version 3.0.2.0 and the majority appears to be running smoothly however when I log out I am seeing the following; Account You have been logged off your account. It is now safe to leave the computer. Your shopping cart has been saved, the items inside it will be restored whenever you log back into your account. And then finding I can access my account (as if I was still logged in) by simply clicking on 'My Account' without entering any login information. I'm certain it shouldn't be doing that but haven't got any idea how to go about resolving the problem. Hope someone can help because it's driving my mad trying to fix it!!!! ??? Thanks everyone ;D ----------------------------------- so I found the latest version session file and add this code and problem solved File Name : system->library->session.php