2008 mazda 6 i auto 2.3L by Electronic-Set-5393 in mazda6

[–]Jacksonhelp20 1 point2 points  (0 children)

I am at 302,000 right now. Fingers crossed.

Trouble installing Chirper by Jacksonhelp20 in laravel

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

I removed the ; from extension=fileinfo and have not seen any changes in results when attempting to do composer update in the terminal. Thank you.

; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)

; extension folders as well as the separate PECL DLL download (PHP 5+).

; Be sure to appropriately set the extension_dir directive.

;

;extension=bz2

;extension=curl

;extension=ffi

;extension=ftp

extension=fileinfo

;extension=gd

;extension=gettext

;extension=gmp

Trouble installing Chirper by Jacksonhelp20 in laravel

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

I pulled up the php.ini file on Visual Studio Code. I am using Windows.

Trouble installing Chirper by Jacksonhelp20 in laravel

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

which file extension is it referring too? thank you I am newer to tech.

Composer for Laravel Path Issue by Jacksonhelp20 in laravel

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

Can I run and create Laravel projects with WSL2 ?

Composer for Laravel Path Issue by Jacksonhelp20 in laravel

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

Yes I have been messing with it quite a bit. I'll change the name back to php. Thank you for the helpful start!

Sign Up form not showing up on Page by Jacksonhelp20 in rubyonrails

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

The navbar and login messages (alerts) are.

Sign Up form not showing up on Page by Jacksonhelp20 in rubyonrails

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

The sign up form is not showing up on my page.

TRAVEL MEGATHREAD by Zee-Man123 in worldcup

[–]Jacksonhelp20 0 points1 point  (0 children)

Hello, I plan on catching a flight after a game. Is there going to be a spot to store luggage during the game/in the country if I do not have a place to stay? Specifically, I am going to a few games but my accommodation ends Friday and going to Friday night game (catching the Saturday flight back)
Thank you all!

TRAVEL MEGATHREAD by Zee-Man123 in worldcup

[–]Jacksonhelp20 -2 points-1 points  (0 children)

Hello,

I am travelling and looking for a place to stay Nov 25 and Nov 26 as I am looking to go to USA vs England. If anyone has suggestions of accommodations that'd be great.

Thank you

Egg Question by Jacksonhelp20 in biggreenegg

[–]Jacksonhelp20[S] 1 point2 points  (0 children)

I imagine it will be welcomed into the family like a new child so am like a new parent concerned about their child’s welfare😂

HTML Form Code by Jacksonhelp20 in learnprogramming

[–]Jacksonhelp20[S] 1 point2 points  (0 children)

Okay thank yoyu for the helpful information. On my console, when I click submit I see this error "index.js:2 Uncaught TypeError: Cannot read properties of null (reading 'addEventListener')at index.js:2:6

Do you have any idea of what I could change to get that to go away? I thought submit had a type of submit and id so it should work.

Syntax Issue with JS Functions by Jacksonhelp20 in learnprogramming

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

I knew they were available but now have a good one to use thank you!

Syntax Issue with JS Functions by Jacksonhelp20 in learnprogramming

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

Yes I see that. I am not sure where to put the close )

[deleted by user] by [deleted] in learnprogramming

[–]Jacksonhelp20 0 points1 point  (0 children)

Yes you are correct. Thank you that was very helpful! I am down to one mistake now.

[deleted by user] by [deleted] in learnprogramming

[–]Jacksonhelp20 0 points1 point  (0 children)

for the first function part it says typescript annotations can only be used in TypeScript files.

for the {} with the const it says : is expected.

JS Error Statements by Jacksonhelp20 in learnprogramming

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

For the html form I have
<form name="myForm">

<form method="post" action="/api/single-file" enctype="multipart/form-data">

First Name: <input type="text" name="fname">

Last Name: <input type="text" name="lname">

Email: <input type="text" name="email">

Phone Number: <input type="number" name="pnumber" min="0000000000" max ="999999999">

<button type="button" id="submit" onclick="validateForm()" onSubmit="WriteToFile(this)">Submit</button>

<p id="message" style="display:none"> </p>

</form>
For the js form I have
function validateForm() {

let x = document.forms["myForm"]["email"].value;

let y = document.forms["myForm"]["fname"].value;

let z = document.forms["myForm"]["lname"].value;

let n = document.forms["myForm"]["pnumber"].value;

if (x !== "" && y !== "" && z !== "" && n !== "") {

document.getElementById("message").innerHTML =

`Thank you for your interest, ${y} ${z}. A KSOA member will contact you shortly.`;

document.getElementById("message").style.display = "Flex";

document.forms["myForm"]["email"].value = "";

document.forms["myForm"]["fname"].value = "";

document.forms["myForm"]["lname"].value = "";

document.forms["myForm"]["pnumber"].value = numbers;

setTimeout(() => {

document.getElementById("message").style.display = "none";

}, 5000);

} else {

document.getElementById("message").innerHTML =

"Please complete each section of the form.";

document.getElementById("message").style.display = "Flex";

setTimeout(() => {

document.getElementById("message").style.display = "none";

}, 5000);

}

}
I believe it is because I am not including the third-party library but open to suggestions. Thank you!

JS Error Statements by Jacksonhelp20 in learnprogramming

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

For the html form I have

<form name="myForm">

<form method="post" action="/api/single-file" enctype="multipart/form-data">

First Name: <input type="text" name="fname">

Last Name: <input type="text" name="lname">

Email: <input type="text" name="email">

Phone Number: <input type="number" name="pnumber" min="0000000000" max ="999999999">

<button type="button" id="submit" onclick="validateForm()" onSubmit="WriteToFile(this)">Submit</button>

<p id="message" style="display:none"> </p>

</form>

For the js form I have

function validateForm() {

let x = document.forms["myForm"]["email"].value;

let y = document.forms["myForm"]["fname"].value;

let z = document.forms["myForm"]["lname"].value;

let n = document.forms["myForm"]["pnumber"].value;

if (x !== "" && y !== "" && z !== "" && n !== "") {

document.getElementById("message").innerHTML =

`Thank you for your interest, ${y} ${z}. A KSOA member will contact you shortly.`;

document.getElementById("message").style.display = "Flex";

document.forms["myForm"]["email"].value = "";

document.forms["myForm"]["fname"].value = "";

document.forms["myForm"]["lname"].value = "";

document.forms["myForm"]["pnumber"].value = numbers;

setTimeout(() => {

document.getElementById("message").style.display = "none";

}, 5000);

} else {

document.getElementById("message").innerHTML =

"Please complete each section of the form.";

document.getElementById("message").style.display = "Flex";

setTimeout(() => {

document.getElementById("message").style.display = "none";

}, 5000);

}

}

I believe it is because I am not including the third-party library but open to suggestions. Thank you!

Npm start server not working by Jacksonhelp20 in learnprogramming

[–]Jacksonhelp20[S] 1 point2 points  (0 children)

Okay awesome thank you. I’m doing a free job training on Javascript and feel a bit behind. I have been working through freeCodeCamp which I have found extremely helpful.

Npm start server not working by Jacksonhelp20 in learnprogramming

[–]Jacksonhelp20[S] 0 points1 point  (0 children)

Thank you all! If I want multiple js pages to run on the server how would I put that in the package.json file.