Re: Laravel or CodeIgniter Programming Web Development by leenajose Laravel is simple and elegant , then easy language as like as codeigniter It is simple, and also quick to set up CodeIgniter. Just download the preferred version from CodeIgniter homepage. Otherwise, from GitHub. Thereafter, unzip the contents. Here, let us make a brief analysis and know the differences between Laravel and CodeIgniter. You can read… Push data to queue in Laravel Programming Web Development by iqlas Laravel App checks redis database for data pushed by 3rd Party. Laravel Scheduler runs artisan command `php artisan check:redis` every 10 mins. I am expecting about 20k records to be checked every hour at peak times. Please also suggest me if my whole approach as a whole is flawed. 1. Scheduler runs check:redis command every 10 mins 2. … Re: Laravel or CodeIgniter Programming Web Development by diafol Laravel 4 is a shiny new speedboat while CI is a putt-putt. What this means is that you can get your hands dirty really quickly with CI and get fast results as the learning curve is pretty shallow for a framework. The coarse controls are easy to master. However, delve deeper into the engine and try to make it dance to your tune and you find that it… Re: class "Form " not found Programming Web Development by diafol Laravel excepton handling is notoriously labarinthine if you're not experienced with it. However, Form class not found sounds bad. Are you loading this from a controller? Re: Phython Programming Web Development by alan.davies Laravel is just a php framework. It's php. As DD says Google using php and python together. Php isn't great at chat apps unless you can leverage sockets to work. Ajax can be used but it's not great. Have a look at node. Laravel Programming Web Development by SirMahlon page with form open in laravel 4.2 is not working. it throws this error Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException Re: Laravel Programming Web Development by SirMahlon the issue has to do with forms in laravel 4.2 . So i get suggestions of changing some other things in the app.php file. which i have. runned composer update. it like am new to the framework. i really need help. Re: Laravel Programming Web Development by SirMahlon true but it working now. i guess laravel is case sensitive. when i changed from form to Form. it worked. Thanks Team Daniweb Laravel : merging public_html with framework Programming Web Development by davy_yg Hello, Please help me set this laravel framework file. I have two folders: framework_freshway: - public_html - framework I still receive this error message when trying to run this url: http://localhost/framework_freshway/public_html/ Parse error: syntax error, unexpected 'class' (T_CLASS), expecting identifier (… Re: Laravel Framework Programming Web Development by davy_yg Another question: how to tell what version of laravel from the laravel files? How to check it? I have a laravel file which I cannot tell what version is it? Re: Laravel : merging public_html with framework Programming Web Development by davy_yg I try Xampp and I get this error message: 1/1 PDOException in Connector.php line 50: SQLSTATE[HY000] [2002] No connection could be made because the target machine actively refused it. in Connector.php line 50 at PDO->__construct('mysql:host=soulfy.com;dbname=wwwsoulf_revsoul', 'wwwsoulf_revsoul', 'deleted', … Laravel Framework Programming Web Development by davy_yg Hello, I am trying to install laravel for the first but unable to do so. I already install the composer and it has error since it request php7.dll is missing from my computer. Where to find that file? Okay, then where is a good tutorial to learn laravel? Thanks in advance. Re: Laravel Framework Programming Web Development by diafol I'd find it easier to install the following: 1. Fresh install of XAMPP with PHP7 (uninstall previous versions - but backup any SQLs / Sites first) 2. Install Composer (uninstall any previous versions) - this is a must - old versions of composer don't like v7 3. Install Laravel to the directory of your choice (in htdocs) 4. Remember to set… Re: Laravel Framework Programming Web Development by diafol From the site: http://www.easyphp.org/save-easyphp-devservervc9-latest.php - be careful it automatically starts a download of the easyphp executable! The page states: >EasyPHP DevServer 14.1 VC9 PHP 5.4.x / 5.3.x / 5.2.x, Apache 2.4.7 VC9, MySQL 5.6.15, PhpMyAdmin, Xdebug + modules + components So, PHP5.4 as the maximum? Laravel 5.4… Re: Laravel Framework Programming Web Development by diafol >How to run artisan from laravel root directory? Since the extension is file, it requires another software to run artisan. Assuming you have added `php.exe` to your PATH (env variables). Composer should be added to PATH if you used the Windows installer. Laravel should be available globally too, but it does depend on how you installed it. … Re: Laravel : merging public_html with framework Programming Web Development by diafol Alternatively you could try a previous version of laravel Laravel Teacher Programming Web Development by davy_yg Hello, Is anyone here are really good at laravel? I am willing to pay at $8.00 / hour if anyone here can teach me how to work on laravel while working on my project as a sample through skype. Thanks. Re: Laravel Framework Programming Web Development by davy_yg I think I find it out. It is probably https://laracasts.com . Yet, I still need some help on installing laravel since I only learn it for one day. Re: Laravel Framework Programming Web Development by diafol I think it.s laravel -V Re: Laravel Framework Programming Web Development by davy_yg How to run artisan from laravel root directory? Since the extension is file, it requires another software to run artisan. Re: Laravel CRUD Booster Programming Web Development by davy_yg I finally get the database set up but now I do not know why it takes forever to install the CRUDBooster. C:\xampp\htdocs\crudbooster2>php artisan crudbooster:install # __________ __ ______ ____ __ # / ____/ __ \/ / / / __ \/ __ )____ ____ _____/ /____ _____ # / / / /_/ / / / … Laravel CRUD Booster Programming Web Development by davy_yg Hello, I am trying to learn the basic of Installing CRUD Booster in Laravel. I wonder how to create the databases? I cannot understand the manual. http://crudbooster.com/doc/5.3/intro I am getting this error when trying to run: http://localhost/crudbooster/public/admin/login ErrorException (E_ERROR) SQLSTATE[HY000] [1045] … laravel tutorial Programming Web Development by alispicy i want laravel tutorial or projects for reference, i did not find laravel tutorial for geting api data through js and php, how to get data on view. please help ....i am new to laravel Re: Laravel 6 - Redirect to a page after successful login Programming Web Development by Dani So sorry for the delay in responding. With native PHP, you can always redirect to a different page by setting an HTTP 301 redirect header as so: <?php header('Location: http://www.example.com/', true, 301); exit; ?> Note you **cannot** echo any HTML to the web browser before the header call. A 301 redirect … Re: laravel tutorial Programming Web Development by pritaeas Something like [this](http://maxoffsky.com/code-blog/laravel-ajax-example-source-code/) maybe? Laravel 6 - Redirect to a page after successful login Programming Web Development by jeffersonalomia Hi, I would like to ask how to redirect to another page, like for example dashboard page (because normally after successful login it will redirect the user to home page) ? I am new at laravel environment and I will highly appreciate all your comments and looking forward to learn a lot from you. Currently I am using Laravel 6 version. … Laravel pass variable to redirect Programming Web Development by spowel4 In Laravel 4, which I am just beginning to learn, I have this bit of logic in my controller: `$guid = Input::get('guid');`. I know that part works because I can echo out the value successfully. I am trying to pass the $guid value to a view through a redirect like this: `return Redirect::route('worktable1.show', $guid);` but I keep getting an … Laravel Passport- Protect routes for different user types Programming Web Development by baig772 I am using `passport` in `laravel` for authenticating my users in APIs. I am able to authenticate different types of users from different tables and generating different token for them but the routes are not protected. For example. A user can access the routes like this Route::group(['middleware' => 'auth:api'], function () {… Re: Laravel Passport- Protect routes for different user types Programming Web Development by PARDEEP_2 I think you have problem in middleware routes so follow this [article](https://www.cloudways.com/blog/rest-api-laravel-passport-authentication/) Re: Laravel Programming Web Development by jkon I just found https://github.com/laravel/laravel#hello-world . It looks like an interesting framework , I will dig more to it …