Install WordPress Fast Using PHP Script

Post Reply
User avatar
T4B
Posts: 160
Joined: Sat Jul 11, 2020 9:44 am
Been thanked: 5 times

Image

https://github.com/t4ba/Fast-WP-Install ... aller.php
  • Download and upload wp-installer.php file to public_html
  • Go to yourdomain.com/wp-installer.php and click Install WordPress
  • If the automatic removal of wp-installer.php fails, please remove it manually from your web directory.
if you want to install WordPress inside a directory (public_html/directory) move the wp-installer.php to the directory and run.
Last edited by T4B on Tue Oct 17, 2023 3:13 am, edited 1 time in total.

Tags:
User avatar
isscbta
Team Member
Posts: 130
Joined: Mon Jul 19, 2021 1:41 am
Has thanked: 16 times
Been thanked: 3 times

Hi T4B,

Great work! Perhaps you could add some code that automatically deletes the file after first run:

Code: Select all

// Delete self
if (unlink(__FILE__)) {
    echo "<br>Script was successfully deleted.";
} else {
    echo "<br>An error occurred while deleting the script.";
}
exit;
User avatar
T4B
Posts: 160
Joined: Sat Jul 11, 2020 9:44 am
Been thanked: 5 times

isscbta wrote: Mon Oct 16, 2023 10:45 pm Hi T4B,

Great work! Perhaps you could add some code that automatically deletes the file after first run:

Code: Select all

// Delete self
if (unlink(__FILE__)) {
    echo "<br>Script was successfully deleted.";
} else {
    echo "<br>An error occurred while deleting the script.";
}
exit;
Updated :)
mccn
Posts: 7
Joined: Thu May 06, 2021 2:00 pm

Nice job !
Post Reply