Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. General Discussion
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • Most Views
    • W

      How to Live Bagisto website on main Domain
      • web1.geteideas

      2
      0
      Votes
      2
      Posts
      409
      Views

      sanjay-webkul

      @web1-geteideas said in How to Live Bagisto website on main Domain:

      Hi
      How can i make my store live on main Domain.
      Current Url:- https://raados.com/myshop/bagisto/public/
      Required Webiste on: https://raados.com

      Hi there,
      You need to set you Document Root Path from Apache conifg file.

    • T

      How to insert configurable product programmatically?
      • ttm.sanjay

      4
      0
      Votes
      4
      Posts
      1394
      Views

      sanjay-webkul

      Hi there,
      Please take a reference from Here

    • D

      reset password email issue
      • dsharma

      5
      0
      Votes
      5
      Posts
      1588
      Views

      C

      I am still facing the same issue in forgot password module and I have also added the credantials in .env file. Can someone help me in to this?

      I am getting below error
      "Email "" does not comply with addr-spec of RFC 2822."

      If I do : dd($request->only(['email']));

      It gives me below value :

      ^ array:1 [▼
      "email" => "@.com"
      ]

      (I can't disclose my email so keeping it *****)

    • P

      Admin user authentication in custom package
      • ppstech

      9
      0
      Votes
      9
      Posts
      2629
      Views

      K

      @rahul said in Admin user authentication in custom package:

      Hi waffle game

      Kindly upload zip of your package with database so that we can check.

      Thanks

      I downloaded the zip code then what should i do

    • P

      Add Cart / Checkout (API)
      • pubpng

      2
      0
      Votes
      2
      Posts
      484
      Views

      sanjay-webkul

      Hi there,
      Which version of Bagisto are you using?

    • L

      Select Payment Method Paypal weird text
      • larocfra

      15
      0
      Votes
      15
      Posts
      2679
      Views

      sanjay-webkul

      @serdarsever said in Select Payment Method Paypal weird text:

      Thank You!!! I did it finally, I appreciate and respect your efforts and response. Greetings from Turkey!

      Hi There,

      Thanks for the update.
      Also, if you like our support, you may give us the review here:- https://www.trustpilot.com/review/bagisto.com

      That would be grateful for us.

      Thanks & Regards,

    • S

      Custom theme issue
      • shreyasi

      9
      0
      Votes
      9
      Posts
      2558
      Views

      xoilac79

      Exactly what I'm looking for, straight foward answer too. Appreciate the help guys!
      https://soikeo79.com/

    • leecyprint

      This topic is deleted!
      • leecyprint

      1
      0
      Votes
      1
      Posts
      19
      Views

      No one has replied

    • T

      Get data from db without data grid
      • Teddi

      3
      0
      Votes
      3
      Posts
      488
      Views

      T

      Can you send me the complete tutorial about it?

    • M

      This topic is deleted!
      • MallauryG

      1
      0
      Votes
      1
      Posts
      13
      Views

      No one has replied

    • M

      This topic is deleted!
      • maSocraM

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • D

      already considering new customers as verified
      • dsharma

      3
      0
      Votes
      3
      Posts
      636
      Views

      O

      it is still showing undefined even when i have added customer menu array in config/menu.

    • T

      Found Error while adding parameters Repository on Controller Class
      • Teddi

      3
      0
      Votes
      3
      Posts
      529
      Views

      T

      thanks for replying, i just miss one backslash in herefc8a1c34-ac4b-416d-8993-bdc338c344ea-image.png

    • S

      This topic is deleted!
      • SupportTime

      1
      0
      Votes
      1
      Posts
      15
      Views

      No one has replied

    • bestivfcentre

      This topic is deleted!
      • bestivfcentre

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • N

      How to update from 1.3 to 1.4 inside Docker?
      • newbie

      2
      0
      Votes
      2
      Posts
      396
      Views

      sanjay-webkul

      Hi there,
      Is it possible to share the steps which you followed for installing the bagisto?

    • K

      admin login error
      • karkiswapnil

      3
      0
      Votes
      3
      Posts
      1226
      Views

      B

      wow, give a nice solution for this error thanks for posting this keep it up I am sharing this topic with my friends.
      from:- logo digitizing

    • T

      How can i create API and get data form bagisto
      • Teddi

      9
      0
      Votes
      9
      Posts
      1622
      Views

      sanjay-webkul

      Hi there,
      as i can check the issue is with your database credentials.please verify the credentials and you can change the db password once and try again.

    • S

      Bagisto blade file changes not reflecting and error on vendor publish --force
      • smrithi

      5
      0
      Votes
      5
      Posts
      1805
      Views

      C

      It is still not working. I have made the changes in product view blade file. I am using different theme name "ThemeName" with below code in themes.php.

      'sps' => [
      'views_path' => 'resources/themes/sps/views',
      'assets_path' => 'public/themes/sps/assets',
      'name' => 'ThemeName',
      'parent' => 'velocity'
      ],

    • K

      How to retrieve image along with category name
      • Keerthi

      3
      0
      Votes
      3
      Posts
      2056
      Views

      ElizabethRic

      To retrieve an image along with its category name, you can use the following approach:

      Store the images and their corresponding category names in a database.

      Retrieve the image and category data from the database using an SQL query that joins the image table and category table on the category ID.

      Use PHP to display the image with its category name. You can use the database query results to dynamically create an HTML element that displays the image, along with its category name.

      Here is an example code snippet that demonstrates this approach:

      php
      Copy code
      // Connect to the database
      $db = mysqli_connect("localhost", "username", "password", "mydatabase");

      // Define the SQL query
      $sql = "SELECT images.*, categories.category_name FROM images
      INNER JOIN categories ON images.category_id = categories.category_id";

      // Execute the query
      $result = mysqli_query($db, $sql);

      // Loop through the results and display the images and category names
      while ($row = mysqli_fetch_assoc($result)) {
      echo "<div>";
      echo "<img src='" . $row['image_url'] . "' alt='" . $row['image_alt'] . "'>";
      echo "<p>Category: " . $row['category_name'] . "</p>";
      echo "</div>";
      }
      In this example, the query joins the images table with the categories table, using the category_id field as the common key. The query selects all columns from the images table and the category_name column from the categories table.

      The while loop iterates through the query results and outputs an HTML div element for each image, containing the img tag and the category name displayed in a p tag.

      Note that the code assumes that the image URLs and alt text are stored in the images table, and the category names are stored in the categories table. You may need to adjust the code based on the structure of your database.