← prev | next →
Fatima 2020-10-04 23:29:56
Is the problem my Ram low space ???
If I upgrade my Ram to 4G , does it solve my problem?
nasser66 2020-10-05 00:08:10
Fatima 2020-10-04 23:29:56
Is the problem my Ram low space ???
If I upgrade my Ram to 4G , does it solve my problem?
use this command:
COMPOSER_MEMORY_LIMIT=-1 composer update
you dont need to change php.ini
nasser66 2020-10-05 00:09:07
praneet81 2020-10-04 23:19:07
name attribute doesnt work with element which is rendered using ajax,how do i go about it?
send your code
praneet81 2020-10-05 00:09:40

Photo from Praneet Singh Roopra
praneet81 2020-10-05 00:09:55

Photo from Praneet Singh Roopra
praneet81 2020-10-05 00:10:39
praneet81 2020-10-05 00:09:40
Photo from Praneet Singh Roopra
Only the name attribute “package” which is rendered after ajax call isn’t showing in request data
Fatima 2020-10-05 00:24:20
nasser66 2020-10-05 00:08:10
use this command:
COMPOSER_MEMORY_LIMIT=-1 composer update
you dont need to change php.ini
I tried it but no changes
FairInaction 2020-10-05 06:39:14
Fatima 2020-10-05 00:24:20
I tried it but no changes
Increase memory limit in php.ini
FairInaction 2020-10-05 06:40:53
Fatima 2020-10-05 00:24:20
I tried it but no changes
php -d memory_limit=512M composer.phar update
StanleyMasinde 2020-10-05 06:43:48
Fatima 2020-10-05 00:24:20
I tried it but no changes
You can create a page file to act as a virtual RAM. The best solution is a RAM upgrade
https://www.tomshardware.com/news/how-to-manage-virtual-memory-pagefile-windows-10,36929.html
How To Manage Virtual Memory (Pagefile) In Windows 10 –
Tom’s HardwareFollow these simple steps to manually manage the Virtual Memory (Pagefile) size in Windows 10.
StanleyMasinde 2020-10-05 06:44:11
You can use the swapfile in Linux
mrbiryani 2020-10-05 07:34:31
2020-09-06 09:42:44
class Fruit{
public $color;
function __constructor(){
$this->color=’red’;
}
function showColor(){
echo $this->color;
}
}
$f=new Fruit();
echo $f->showColor();
Return color inside the function in of echo… And make function public as well
mrbiryani 2020-10-05 07:35:41
2020-09-06 09:42:44
class Fruit{
public $color;
function __constructor(){
$this->color=’red’;
}
function showColor(){
echo $this->color;
}
}
$f=new Fruit();
echo $f->showColor();
And it should be __construct
Prem Soni 2020-10-05 07:50:48
Route not defined erroe
Prem Soni 2020-10-05 07:50:59
Can anyone help me?
poovarasu1 2020-10-05 07:56:04
Prem Soni 2020-10-05 07:50:48
Route not defined erroe
Plz clear the route cache & call the route
2020-10-05 07:56:07
Prem Soni 2020-10-05 07:50:48
Route not defined erroe
show Error
2020-10-05 07:56:44
poovarasu1 2020-10-05 07:56:04
Plz clear the route cache & call the route
yes -some thimes this helped
Prem Soni 2020-10-05 08:02:24
Ok
Prem Soni 2020-10-05 08:02:45
Done
Prem Soni 2020-10-05 08:24:01
If i try to login than it redirect me to same page
Prem Soni 2020-10-05 08:24:12
What to do?
2020-10-05 08:49:59
Prem Soni 2020-10-05 08:24:01
If i try to login than it redirect me to same page
probably you login now
check loginController – > function __constract(){….)
infact jobe function constract is : if you loggedIn you not must seee page login
i,m surry if i,m not speak fluent in english
Prem Soni 2020-10-05 08:52:35
Ok
Prem Soni 2020-10-05 08:56:52
Still not working?
2020-10-05 09:02:53
Prem Soni 2020-10-05 08:56:52
Still not working?
you want see page login ok?
Prem Soni 2020-10-05 09:20:55
Hm
Prem Soni 2020-10-05 09:21:40
My login page redirect me again I I enter correct password an d email
Prem Soni 2020-10-05 09:23:40
It directly goes to else condition
Prem Soni 2020-10-05 09:23:52
Not in if
2020-10-05 09:41:57
guys this my array
$a=[‘a’,’b’,’c’,’d’]
how can i delete item ?
Pandeybaba108 2020-10-05 09:47:28
Guyz, how to manage. Server in digital ocean
Pandeybaba108 2020-10-05 09:48:07
@mm6101 use pop function
Pandeybaba108 2020-10-05 09:48:23
It will deleted From array
2020-10-05 09:48:31
no i,m want delete with key
2020-10-05 09:48:45
i,m surry with value
Pandeybaba108 2020-10-05 09:51:05
Use same function bro
2020-10-05 09:54:03
https://github.com/hamedgasemi200/php-chunk-file-upload/
GitHub – hamedgasemi200/php-chunk-file-upload: A lightweight PHP package for handling the chunk file upload. Compatible with almost all the versions of Laravel. –
GitHubA lightweight PHP package for handling the chunk file upload. Compatible with almost all the versions of Laravel. – GitHub – hamedgasemi200/php-chunk-file-upload: A lightweight PHP package for hand…
2020-10-05 09:54:59
2020-10-05 09:54:03
https://github.com/hamedgasemi200/php-chunk-file-upload/
I released this project today. It’s a great chunk file uploader. I’ve been using it for a few years. If you like you can use it too now 😉
DmytroBrovun 2020-10-05 09:56:07
2020-10-05 09:41:57
guys this my array
$a=[‘a’,’b’,’c’,’d’]
how can i delete item ?
unset($a[0]);
berto309 2020-10-05 09:59:14
2020-10-04 08:31:22
$relationship = Model::first()->Relationship;
if (!$relationship) abort(404);
Thanks.. Turns out I wanted restriction instead so I used 403
2020-10-05 09:59:57
berto309 2020-10-05 09:59:14
Thanks.. Turns out I wanted restriction instead so I used 403
It’s just an example. It’s a simple try and catch
berto309 2020-10-05 10:00:31
The code is working
berto309 2020-10-05 10:00:46
2020-10-05 09:59:57
It’s just an example. It’s a simple try and catch
Yeah
2020-10-05 10:45:55
My env file is not show but project working properly. I want to show my env file
2020-10-05 10:48:36
2020-10-05 10:45:55
My env file is not show but project working properly. I want to show my env file
if use use capnel
https://stackoverflow.com/questions/42143167/cant-see-upload-my-env-file-in-cpanel
Can’t see/upload my .env file in cpanel –
Stack OverflowI can’t see my .env file in my cpanel and i also can’t upload .env file in my cpanel.
What can i do??
2020-10-05 10:49:39
infact like hidden file – never mind – when you want change your .env file you can edit in your computer and upload
Z_Yamin 2020-10-05 12:13:24
I want to take a code from api, and send to email for confirmation, and then get the code and send to api in laravel, how can i do taht?
DmytroBrovun 2020-10-05 12:35:11
check your route names in routes/web.php
DmytroBrovun 2020-10-05 12:35:51
Z_Yamin 2020-10-05 12:13:24
I want to take a code from api, and send to email for confirmation, and then get the code and send to api in laravel, how can i do taht?
so what’s the problem?
← prev | next →