Irebe Library

Irebe Library

Irebe Library gives the best online web development and programming tutorials for all of the latest web technologies including Ajax, Json, Mysql, PHP, HTML, CSS and other computer skills.

❤️ Support me on my coding journey ❤️
- www.buymeacoffee.com/mberecall

#46. Seller - Shop Setup

#46. Seller - Shop Setup

Пікірлер

  • @subhankarroy8915
    @subhankarroy891510 сағат бұрын

    thanks it finally workde

  • @irebelibrary
    @irebelibrary10 сағат бұрын

    Cool👍. You're welcome.

  • @azizahrahmawati1576
    @azizahrahmawati15763 күн бұрын

    it works! thank you so much

  • @irebelibrary
    @irebelibrary3 күн бұрын

    You're welcome👍

  • @wilfrednobertfrancis7674
    @wilfrednobertfrancis76745 күн бұрын

    Thanks

  • @ancientist1846
    @ancientist18465 күн бұрын

    Thank you so much 🥲🤞

  • @irebelibrary
    @irebelibrary3 күн бұрын

    Nice👍. You're welcome

  • @muradbayazid2256
    @muradbayazid22565 күн бұрын

    Thank you very much, is is really fixed.

  • @irebelibrary
    @irebelibrary3 күн бұрын

    Nice👍. You're welcom

  • @pratyakshsomani
    @pratyakshsomani6 күн бұрын

    It worked, Hitting like.

  • @irebelibrary
    @irebelibrary6 күн бұрын

    Thank u so much. You're welcome🙏

  • @AlokKejriwal
    @AlokKejriwal6 күн бұрын

    in my CI 4.5.4, there is no htaccess file in root folder

  • @irebelibrary
    @irebelibrary6 күн бұрын

    You will create your own.

  • @AlokKejriwal
    @AlokKejriwal6 күн бұрын

    @@irebelibrary fine, and what about the .htaccess file in public folder?

  • @AlokKejriwal
    @AlokKejriwal6 күн бұрын

    it's amazing video, I was looking for localhost deployment from a week, and got solution from your video. thanks Man 🙏

  • @irebelibrary
    @irebelibrary6 күн бұрын

    @@AlokKejriwal Woww, That's amazing...

  • @cryptoland2416
    @cryptoland24168 күн бұрын

    thank you

  • @irebelibrary
    @irebelibrary7 күн бұрын

    Thank you too. You're welcome

  • @abdulqanicismaanibrahim2279
    @abdulqanicismaanibrahim227911 күн бұрын

    Thank you very much❤

  • @irebelibrary
    @irebelibrary11 күн бұрын

    You're welcome

  • @hosseinshabani3987
    @hosseinshabani398711 күн бұрын

    Thank youuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu

  • @irebelibrary
    @irebelibrary11 күн бұрын

    You're welcome

  • @hv_94
    @hv_9411 күн бұрын

    Se non funziona un’altra volta come si può fare?

  • @irebelibrary
    @irebelibrary11 күн бұрын

    Hello, When Error back, try the same way.

  • @hv_94
    @hv_9411 күн бұрын

    @@irebelibrary Come? 🤔 Puoi fare un’altro video?

  • @irebelibrary
    @irebelibrary11 күн бұрын

    @hv_94 "Yeah, I tried to find a permanent solution, but so far I haven't found one. However, if I do find it, I will let you know. In the meantime, could you please be patient and use that method every time XAMPP has an issue?"

  • @hv_94
    @hv_9411 күн бұрын

    @@irebelibrary una volta ho fatto poi non ci sono più riuscito.

  • @worldofgames6763
    @worldofgames676312 күн бұрын

    Thank you worked

  • @irebelibrary
    @irebelibrary12 күн бұрын

    You're welcome

  • @myclass-wk6ng
    @myclass-wk6ng12 күн бұрын

    thank you

  • @irebelibrary
    @irebelibrary12 күн бұрын

    You're welcome

  • @vyacheslavvasilev1776
    @vyacheslavvasilev177612 күн бұрын

    10:54 Oh, it's unclear how to complete this step in Laravel 11. If possible, please tell me how to do it correctly (sorry for my English, i use translator:) )

  • @irebelibrary
    @irebelibrary12 күн бұрын

    Ohh, Sorry for late. Actually, Livewire 11 structure became with the missing of some files that was available in Laravel 10. But those files are still there in Laravel 11. So, To use Authenticate.php and RedirectIfAuthenticated.php file use the following Steps: 1. Open AppServiceProvider.php - import these three classes use Illuminate\Auth\Middleware\RedirectIfAuthenticated; use Illuminate\Auth\Middleware\Authenticate; use Illuminate\Support\Facades\Session; - Update boot() method like this: public function boot(): void { RedirectIfAuthenticated::redirectUsing(function () { return route('admin.dashboard'); }); Authenticate::redirectUsing(function () { Session::flash('fail','You need to login first'); return route('admin.login'); }); } Not: Don't forget to run "php artisan optimize" command after that. This is not fully result, but you can make your own strategy using above example especially when you're used multi-guards.

  • @vyacheslavvasilev1776
    @vyacheslavvasilev177612 күн бұрын

    @@irebelibrary Friend, I am very grateful to you for such a detailed answer! And thank you for your video lessons! P.S. It seems that creating a project on Laravel 11 was not the best idea 😀 It might have been easier to create a project on Laravel 10 and update it to the current version later.

  • @mugenmugen5237
    @mugenmugen523713 күн бұрын

    please help,, i am stuck in attempint running mysql... but nothing happend

  • @vyacheslavvasilev1776
    @vyacheslavvasilev177614 күн бұрын

    01:00 In Laravel 11 custom routing files are registered in a file located at the path bootstrap/app.php: return Application::configure(basePath: dirname(__DIR__)) ->withRouting( web: __DIR__.'/../routes/web.php', commands: __DIR__.'/../routes/console.php', health: '/up', then: function() { Route::namespace('Admin')->prefix('admin')->name('admin.')->group(base_path('routes/admin.php')); } ) ->withMiddleware(function (Middleware $middleware) { // }) ->withExceptions(function (Exceptions $exceptions) { // })->create(); In routes/admin.php: <?php use Illuminate\Support\Facades\Route; Route::get('/', function() { return 'hello admin'; });

  • @Muhammad-Ayan-789
    @Muhammad-Ayan-78914 күн бұрын

    thanks it worked for me

  • @irebelibrary
    @irebelibrary13 күн бұрын

    Very Good👍

  • @myosotisalderson
    @myosotisalderson18 күн бұрын

    no works anymore

  • @DhanaLakshmi-nq7gl
    @DhanaLakshmi-nq7gl20 күн бұрын

    Tq so much sir🎉

  • @irebelibrary
    @irebelibrary20 күн бұрын

    You're welcome

  • @bhavya9447
    @bhavya944720 күн бұрын

    brother i appreciate this content , it was very helpful thankyou

  • @irebelibrary
    @irebelibrary20 күн бұрын

    You're welcome

  • @JoshTWO-ml5mo
    @JoshTWO-ml5mo20 күн бұрын

    Thx❤

  • @irebelibrary
    @irebelibrary20 күн бұрын

    You're welcome

  • @xomebb
    @xomebb22 күн бұрын

    Nice tutorial, it helps me publish my website.

  • @irebelibrary
    @irebelibrary22 күн бұрын

    You're welcome👍

  • @nurianlisrodriguez455
    @nurianlisrodriguez45522 күн бұрын

    No me sirve Que estafa

  • @wafaadam6881
    @wafaadam688124 күн бұрын

    terimakasih

  • @rezas8372
    @rezas837224 күн бұрын

    form not submit, any solution ?

  • @rezas8372
    @rezas837224 күн бұрын

    i got an error -> Cannot declare class App\Http\Livewire\Authors, because the name is already in use. Any solution?

  • @ebraimfayad4712
    @ebraimfayad471225 күн бұрын

    when i delete category Illuminate  \  Contracts  \  Container  \  BindingResolutionException PHP 8.3.7 10.48.14 Unable to resolve dependency [Parameter #0 [ <required> $id ]] in class App\Livewire\Admin\Categories\CategoryList

  • @firefly6258
    @firefly625827 күн бұрын

    how you did it without defining 'processURL' its showing i must define the process url

  • @ebraimfayad4712
    @ebraimfayad471229 күн бұрын

    i need link for downloadinh tostar notification

  • @ezequielignaciosalgueiro7285
    @ezequielignaciosalgueiro728529 күн бұрын

    y para mysql como se soluciona??

  • @clementkayembe3007
    @clementkayembe3007Ай бұрын

    why does the link in the description take me to a package payment page yet I am only a student I need the packages there for tutorial 8 can I have them please

  • @abramarif1020
    @abramarif1020Ай бұрын

    Thank you so much buddy. It worked successfully, appreciated!

  • @irebelibrary
    @irebelibraryАй бұрын

    You're welcome.

  • @coachtomeng4908
    @coachtomeng4908Ай бұрын

    Is that you Stephen Hawking?

  • @rezas8372
    @rezas8372Ай бұрын

    thanks

  • @VivekSingh-gq3ls
    @VivekSingh-gq3lsАй бұрын

    not working

  • @parvez301
    @parvez301Ай бұрын

    ha, kaj korche ai ta

  • @Chaimae761
    @Chaimae761Ай бұрын

    thanks a looot very useful vedio

  • @irebelibrary
    @irebelibraryАй бұрын

    You're welcome👍

  • @Code_IR
    @Code_IRАй бұрын

    🤟thanks bro

  • @irebelibrary
    @irebelibraryАй бұрын

    You're welcome. Be ready for ecommerce using codeigniter 4👍.

  • @Code_IR
    @Code_IRАй бұрын

    @@irebelibrary wow, cool. awaited bro

  • @jaturon2746
    @jaturon2746Ай бұрын

    thank you

  • @irebelibrary
    @irebelibraryАй бұрын

    You're welcome.

  • @JeremiahJ
    @JeremiahJАй бұрын

    I went live using your tutorials. This is one of the best step by step tutorials I've ever seen. Thank you again for all the time spend compiling and producing the video content. Jeremiah

  • @JeremiahJ
    @JeremiahJАй бұрын

    Perfect tutorial - This aligns with the configurations of backend password reset email. Thank you!

  • @santosh2khatri
    @santosh2khatriАй бұрын

    Great tutorial! Your explanation of setting up databases, migrations, models, and seeders is really clear and easy to follow. 👍 I will wait for more videos in CI4, especially e-commerce.

  • @irebelibrary
    @irebelibraryАй бұрын

    Wow. Thanks. Ecommerce using CI4 tutorial series will begin in july.👍. Stay Turned.

  • @nam7634
    @nam7634Ай бұрын

    When i click the link Reset Password in mail it redirect to right route but it is localhost/ not 127.0.0.1:8000/, so it alert The requested URL was not found on this server. Did anyone know the problem is ?

  • @user-dx6tj7qo9k
    @user-dx6tj7qo9kАй бұрын

    omg thank you sooooo much. we want Laravel 11 Jetstream inertia

  • @anushkachouhan5996
    @anushkachouhan5996Ай бұрын

    Thank you

  • @JeremiahJ
    @JeremiahJАй бұрын

    I'm getting this error after creating - custom_pagination.php ErrorException Undefined variable $page APPPATH\Views\frontend\pages\partials\custom_pagination.php at line 58 Any ideas? Thank you.

  • @irebelibrary
    @irebelibraryАй бұрын

    watch carefully from 11:02. Where we defined data['page']

  • @JeremiahJ
    @JeremiahJАй бұрын

    I had to use this: $routes->get('posts/(:any)','BlogController::readPost/$1',['as'=>'read-post']); This one fails: $routes->get('post/(:any)','BlogController::readPost/$1',['as'=>'read-post']);

  • @JeremiahJ
    @JeremiahJАй бұрын

    @irebelibrary - I think I need some help here. This isn't working: <?php foreach( $posts as $post ): ?> The page is blank...So I did this: <?php foreach( $posts as $post ): ?> Although the page seems to only show data for one category, no matter which category I click on. Is there a step missing here? Thank you, Jeremiah

  • @JeremiahJ
    @JeremiahJАй бұрын

    I was able to use this code after fixing the Routes to posts rather than post: $routes->get('posts/(:any)','BlogController::readPost/$1',['as'=>'read-post']);

  • @JeremiahJ
    @JeremiahJАй бұрын

    Note: had to add this to top of [ BlogController.php ] use App\Models\SubCategory; use App\Models\Post; Otherwise you'll see error: Class "App\Controllers\SubCategory" not found