Posts
 
Reputation
Joined
Last Seen
Ranked #29
Strength to Increase Rep
+16
Strength to Decrease Rep
-4
98% Quality Score
Upvotes Received
1K
Posts with Upvotes
934
Upvoting Members
349
Downvotes Received
13
Posts with Downvotes
13
Downvoting Members
13
232 Commented Posts
~1.98M People Reached
Interests
Nature photography, hiking, running.
PC Specs
Ubuntu 14.04 LTS Pentium(R) Dual-Core CPU T4200 @ 2.00GHz
Favorite Tags
Member Avatar for baig772

Hi, the article you're reading seems a bit outdated and it does not support the Laravel Auth system, in 5.2 now you can specify you're own guards, follow: * https://laravel.com/docs/5.2/authentication#authenticating-users * http://blog.sarav.co/multiple-authentication-in-laravel-5-2/ It should work fine.

Member Avatar for tracyberge
0
616
Member Avatar for Dani
Member Avatar for Dani
0
1K
Member Avatar for happygeek

This brings me straight to 2000-2003 years, at that time I was working in a small lab assembling & repairing computers, the worst was when people wanted to recover EFS encrypted files from Windows XP drives. Windows XP policy was insane, they allowed to use EFS without a recovery agent, …

Member Avatar for UnaSutherlands
2
2K
Member Avatar for joshl_1995
Member Avatar for LastMitch
Member Avatar for shak187

**@Arpita_1** Hi, I did not downvoted you, but I suspect you got them because you resurrected an old thread without a good reason (it does not contribute to the topic) and you are not showing what you have done. I suggest you to open a new thread and to show …

Member Avatar for eliasarximan
2
154K
Member Avatar for opjjuly

Make a directory named index and place an index.php there. Probably the configuration of your server needs an index.php in the root, you can place an header redirect in this file: [code]<?php header("Location: /index/",TRUE,301); ?>[/code] So your structure will be: /index.php /index/ /index/index.php bye

Member Avatar for mervin_2
0
837
Member Avatar for joshl_1995

Hi, if you're using an old version of PHP, lower than 5.4 then change the array syntax to: $posts = array(); Starting from [PHP 5.4](http://php.net/manual/en/migration54.new-features.php) you can use the short syntax: $posts = []; So the array should look like: $posts = array( "GROUP1" => array( "565167146975015" ), "GROUP2" => …

Member Avatar for Mark_109
4
3K
Member Avatar for Suzie999

Hi, just a side note: back in Windows XP days by pressing `CTRL ALT DEL` for two times, in the login screen, made the admin account visible. I do not know if this is still valid as I have not used those systems lately. Hope it helps, bye!

Member Avatar for parreirae1
1
905
Member Avatar for Aeonix

You get *undefined* because `get_result()` is a function introduced by the `mysqlnd` (MySQL Native Driver). Usually if you're using **PHP 5.4** and above this is the default, otherwise PHP will use the `libmysqlclient` driver, see: * http://php.net/manual/en/book.mysqlnd.php In practice the MySQLi extension can be served by two drivers, that can …

Member Avatar for jkon
0
3K
Member Avatar for AntonyRayan

In Javascript this is never a simple task, at least for me, so I prefer to stick with libraries. While waiting for more appropriate suggestions, try with the `difference()` function in **moments.js** library: * http://momentjs.com/docs/#/displaying/difference/ Bye!

Member Avatar for Purvi_1
0
830
Member Avatar for RudyM

To get the difference between two dates you can use `datediff()`: * http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_datediff To get the difference without weekends you could also do: drop function if exists diffdate; delimiter // CREATE FUNCTION diffdate(date2 DATETIME, date1 DATETIME) RETURNS INTEGER DETERMINISTIC BEGIN DECLARE dt1 DATETIME; DECLARE i INT; DECLARE wd INT UNSIGNED; …

Member Avatar for kccole01
0
4K
Member Avatar for John_74

**@Luzinete** Hi, please, open a new thread with the error message and the code that generates that error.

Member Avatar for pritaeas
0
16K
Member Avatar for mady028

Hi Julie, if the OS set the azerty layout try to press shift and comma to get the question mark. Anyway you should set the keyboard layout to match the keyboard not the language of the OS, see if this helps: * https://support.microsoft.com/en-us/help/258824/how-to-change-your-keyboard-layout Also from the Lenovo documentation for your …

Member Avatar for sewatiz
0
13K
Member Avatar for FarrisFahad

Hi, you can try **HackerRank:** https://www.hackerrank.com/ Once logged, you can choose the domain you want to explore, some are language specific, but there are many challenges that can be answered in different languages, including javascript, if this is your interest.

Member Avatar for myra
0
293
Member Avatar for Dani

Also, try *The Expanse*, not zombiesque but worth to see: * https://www.wired.com/2017/01/geeks-guide-the-expanse-season-2/

Member Avatar for Darius_1
1
2K
Member Avatar for developer707

In other words you want to return back the new name of the uploaded file? In the PHP script you can send a JSON response with the filename, so move line 12 to 11 and replace the `echo` with: header('Content-type: application/json'); echo json_encode(['target_file' => $targetFile]); and use the **success** event …

Member Avatar for developer707
1
11K
Member Avatar for phphp

Hi, you cannot do this with plain HTML. You need javascript: you could use AJAX to submit the two forms, but you are going to generate two separated requests, with two separated responses from the server(s). Which means the second could return before the first is completed. Or one could …

Member Avatar for dev_10
0
359
Member Avatar for Prateek_2
Member Avatar for nhantam
0
2K
Member Avatar for Andy_10

Hi, the target directory must be an internal path, not the domain as defined here: $target_dir = "http://www.XXXXXX.com/uploads/"; Start by changing that.

Member Avatar for PARDEEP_2
0
629
Member Avatar for cereal

Hello, I hope not to scare you with this long post. I'm testing [Solr](https://lucene.apache.org/solr/) (read solar) and it works fine. I have an issue with the **DataImport** handler, it's set to get data from a MariaDB database, which works fine if I save the database credentials in plain text in …

Member Avatar for tesseract1919
0
2K
Member Avatar for Reverend Jim

Hilarious & exhausting :) Do you think it would possible to log the offending entry through Process Monitor, while running the update instance? https://docs.microsoft.com/en-us/sysinternals/downloads/procmon

Member Avatar for Roger_11
0
1K
Member Avatar for mattyd
Member Avatar for Jessica_16

Hi, probably putting the server offline, removing the disk and accessing it in readonly mode from an OS that will not execute any of the code in that disk could be a starting point to backup what is still available. It's important to make sure it cannot spread in your …

Member Avatar for Jessica_16
0
1K
Member Avatar for Saif_5

Hi, you could use the replication model shipped with MySQL, see: * http://dev.mysql.com/doc/refman/5.7/en/replication.html * http://dev.mysql.com/doc/refman/5.7/en/replication-howto.html Where each node acts like master and slave. See if a multi-master approach could work: * https://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-replication-multi-master.html

Member Avatar for Ashraful_2
1
2K
Member Avatar for SimonIoa

Hi, are you following his tutorial? https://www.9lessons.info/2017/06/ionic-angular-php-login-restful-api.html The part in which he writes about how to *"Create an Authentication Service Provider"* explains how to connect to the api.

Member Avatar for SimonIoa
0
911
Member Avatar for Siberian

And have you checked the contents of the event log? If you're using Windows see: https://www.howtogeek.com/222730/how-to-find-out-why-your-windows-pc-crashed-or-froze/

Member Avatar for Miller_2
0
377
Member Avatar for COKEDUDE

In addition, you may want to try the cli-tools package: * https://github.com/wp-cli/php-cli-tools It's great to send formatted output in command line environments.

Member Avatar for cereal
0
250
Member Avatar for davy_yg

Hi, supposing you are not trying to load a user defined function named `routes()`, have you read the documentation? https://laravel.com/docs/5.5/routing#named-routes and the source in which this function should be defined? Does exists? Use an editor that can autocomplete the code, in SublimeText for example, when you hover a method/function it …

Member Avatar for davy_yg
0
7K
Member Avatar for navjot_2

You want to avoid: 1. overall repetition (i.e. if I connect I don't get your same questions) or 2. only for the current user (i.e. I never see the same questions anymore, but another user can repeat the path) or 3. only for the current user's session (i.e. if I …

Member Avatar for benanamen
0
351