Page 1 of 1

Install WordPress Fast Using PHP Script

Posted: Sat Oct 14, 2023 2:10 pm
by T4B
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.

Re: Install WordPress Fast Using PHP Script

Posted: Mon Oct 16, 2023 10:45 pm
by isscbta
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;

Re: Install WordPress Fast Using PHP Script

Posted: Tue Oct 17, 2023 3:14 am
by T4B
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 :)

Re: Install WordPress Fast Using PHP Script

Posted: Sat Feb 24, 2024 9:25 am
by mccn
Nice job !