It is safe to disable a default action when you double click a file.

When double click, set the action to “None”. So you won’t get trouble replacing some files on server by mistake!
It is safe to disable a default action when you double click a file.
When double click, set the action to “None”. So you won’t get trouble replacing some files on server by mistake!
Some notes for me to refer and remind myself
unlike PHP, a variable must be declared first before been assigned. or it can be declared and assigned at the same time
var myVar = 1;
to get string length:
stringLength = aString.length;
to get nth letter in a string
letter = aString[aString.length-1] // get the last letter
array in javascript. array can also contains array as element
myArray = [“this is string”, 200, true, [“Bulls”, 23]];
use .push() to push element to an array. .pop() to remove last element. .shift() to remove first element and return the element (can assign to a variable)
myArray.push(“another element”);
deletedLastElement = myArray.pop();
Put files in your /public to /public_html directory
The remaining should be place in the home directory (same level as public_html directory)
To make it more readable, you can put the remaining files in another new directory like /my_project
Update /public_html/index.php to point path to correct path
Download Divi.zip from Divi member page
Install a wordpress using softaculous
Go to Appearance > Themes > Add New > Upload Theme
Choose Divi.zip and click on “Install Now”
If error ““The link you followed has expired.” is displayed, go to cPanel > MultiPHP INI Editor. Change “post_max_size” and “upload_max_filesize” to bigger than Divi.zip file size (e.g. 15MB)
You prepare a to do list to make sure you get things down. End up you have too many items in the list and none gets done.
So now you have to manage the to do list.
Instead of one to do list with lots of items on it. Make 3 lists.
1. List with important and urgent items to do. Must finish it TODAY
2. List with important but not urgent items. Must do but still can wait to finish it. You still have time to plan and do.
3. List with the rest of items. Where you mix all other items in this list. You can then remove any items because they are not important after some time, or you can move items to list number 2 or number 1
Rumah untuk dijual Sri Palma Villa, Mantin, Negeri Sembilan (direct owner)
Kelebihan rumah
Kelebihan Taman
Akses
Berminat atau ada sebarang pertanyaan boleh hubungi
Azwan 012-2815182 (prefer whatsapp)
Below are things to do to secure your web application
Some tools commonly used for web development
Sometimes there is issue we got double records in the database due to the form submitted twice.
Here is the way how to prevent it. A simple way
session_start();
if (!$_SESSION['post_data'] == $_POST)
{
// process the data
// after success process, set the session to post value
$_SESSION['post_data'] = $_POST;
}
else
{
// display a message that the form already submitted.
}