First
This commit is contained in:
parent
30a450f776
commit
b447c16aa7
@ -138,6 +138,6 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Sets up WordPress vars and included files. */
|
/** Sets up WordPress vars and included files. */
|
||||||
define('WP_HOME', 'https://wp-test-4446.dev.flatlogic.app');
|
define('WP_HOME', 'https://medcore.appwizzy.dev');
|
||||||
define('WP_SITEURL', 'https://wp-test-4446.dev.flatlogic.app');
|
define('WP_SITEURL', 'https://medcore.appwizzy.dev');
|
||||||
require_once ABSPATH . 'wp-settings.php';
|
require_once ABSPATH . 'wp-settings.php';
|
||||||
143
wp-config.php.bak.
Normal file
143
wp-config.php.bak.
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
<?php
|
||||||
|
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') { $_SERVER['HTTPS'] = 'on'; }
|
||||||
|
/**
|
||||||
|
* The base configuration for WordPress
|
||||||
|
*
|
||||||
|
* The wp-config.php creation script uses this file during the installation.
|
||||||
|
* You don't have to use the website, you can copy this file to "wp-config.php"
|
||||||
|
* and fill in the values.
|
||||||
|
*
|
||||||
|
* This file contains the following configurations:
|
||||||
|
*
|
||||||
|
* * Database settings
|
||||||
|
* * Secret keys
|
||||||
|
* * Database table prefix
|
||||||
|
* * ABSPATH
|
||||||
|
*
|
||||||
|
* @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
*/
|
||||||
|
|
||||||
|
// ** Database settings - You can get this info from your web host ** //
|
||||||
|
/** The name of the database for WordPress */
|
||||||
|
define('WP_CACHE', false);
|
||||||
|
define( 'DB_NAME', 'app_38217' );
|
||||||
|
|
||||||
|
/** Database username */
|
||||||
|
define( 'DB_USER', 'app_38217' );
|
||||||
|
|
||||||
|
/** Database password */
|
||||||
|
define( 'DB_PASSWORD', '4134fddc-2388-4207-886c-16d7ca4eb430' );
|
||||||
|
|
||||||
|
/** Database hostname */
|
||||||
|
define( 'DB_HOST', '127.0.0.1' );
|
||||||
|
|
||||||
|
/** Database charset to use in creating database tables. */
|
||||||
|
define( 'DB_CHARSET', 'utf8' );
|
||||||
|
|
||||||
|
/** The database collate type. Don't change this if in doubt. */
|
||||||
|
define( 'DB_COLLATE', '' );
|
||||||
|
|
||||||
|
/**#@+
|
||||||
|
* Authentication unique keys and salts.
|
||||||
|
*
|
||||||
|
* Change these to different unique phrases! You can generate these using
|
||||||
|
* the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
|
||||||
|
*
|
||||||
|
* You can change these at any point in time to invalidate all existing cookies.
|
||||||
|
* This will force all users to have to log in again.
|
||||||
|
*
|
||||||
|
* @since 2.6.0
|
||||||
|
*/
|
||||||
|
define( 'AUTH_KEY', '8PnG1Lf2Ez_JaVprdcq4kcAK-7QSTV8orhLi0kFl0mo=' );
|
||||||
|
define( 'SECURE_AUTH_KEY', 'iQJoTEBPxjvq_t85TDh5Jm-S-M9OXpCTwIVe4MxSonM=' );
|
||||||
|
define( 'LOGGED_IN_KEY', 'ngNJX1LDjbWEexgJp8xl2T21AsnEEe_4hwthkxsnXHc=' );
|
||||||
|
define( 'NONCE_KEY', '_3gFUqcPtq4XPmCePj--9CuHgOA-p7NHvd5NJlxGZo0=' );
|
||||||
|
define( 'AUTH_SALT', 'Bpq-HxxV1fs-E2NQ6TLeaQ_eEYIqqGz0PPGlBCmye1A=' );
|
||||||
|
define( 'SECURE_AUTH_SALT', 'YMmsnQroEjlr6uABVGx6Kb1BEvLAvLjKlxaMXqQUXc0=' );
|
||||||
|
define( 'LOGGED_IN_SALT', 'N62EK-IHBeIiQElaH1CFTTIEgVgBtxzRzNrpVLCTZMA=' );
|
||||||
|
define( 'NONCE_SALT', 'MgiPOSaGPD_lq5Z1Q4zvUuLdHPCGPVqbTaRroo917mQ=' );
|
||||||
|
|
||||||
|
/**#@-*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WordPress database table prefix.
|
||||||
|
*
|
||||||
|
* You can have multiple installations in one database if you give each
|
||||||
|
* a unique prefix. Only numbers, letters, and underscores please!
|
||||||
|
*
|
||||||
|
* At the installation time, database tables are created with the specified prefix.
|
||||||
|
* Changing this value after WordPress is installed will make your site think
|
||||||
|
* it has not been installed.
|
||||||
|
*
|
||||||
|
* @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
|
||||||
|
*/
|
||||||
|
$table_prefix = 'stg_59466_';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* For developers: WordPress debugging mode.
|
||||||
|
*
|
||||||
|
* Change this to true to enable the display of notices during development.
|
||||||
|
* It is strongly recommended that plugin and theme developers use WP_DEBUG
|
||||||
|
* in their development environments.
|
||||||
|
*
|
||||||
|
* For information on other constants that can be used for debugging,
|
||||||
|
* visit the documentation.
|
||||||
|
*
|
||||||
|
* @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
|
||||||
|
*/
|
||||||
|
define( 'WP_DEBUG', true );
|
||||||
|
|
||||||
|
/* Add any custom values between this line and the "stop editing" line. */
|
||||||
|
define('OCI_DOMAIN', 'medcore.one');
|
||||||
|
define('OCI_SUBDOMAIN', 'www');
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WordPress Localized Language, defaults to English.
|
||||||
|
*
|
||||||
|
* Change this to localize WordPress. A corresponding MO file for the chosen
|
||||||
|
* language must be installed to wp-content/languages. For example, install
|
||||||
|
* de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
|
||||||
|
* language support.
|
||||||
|
*/
|
||||||
|
define( 'WPLANG', 'en_GB' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get email from control email
|
||||||
|
*
|
||||||
|
* Just set to default email fields during 1-click installation
|
||||||
|
*/
|
||||||
|
define( 'WPEMAIL', 'mslipay@gmail.com' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prevent file editing from WP admin.
|
||||||
|
* Just set to false if you want to edit templates and plugins from WP admin.
|
||||||
|
*/
|
||||||
|
define('DISALLOW_FILE_EDIT', true);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* API for One.com wordpress themes and plugins
|
||||||
|
*/
|
||||||
|
define('ONECOM_WP_ADDONS_API', 'https://wpapi.one.com');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Client IP for One.com logs
|
||||||
|
*/
|
||||||
|
if (getenv('HTTP_CLIENT_IP')){$_SERVER['ONECOM_CLIENT_IP'] = @getenv('HTTP_CLIENT_IP');}
|
||||||
|
else if(getenv('REMOTE_ADDR')){$_SERVER['ONECOM_CLIENT_IP'] = @getenv('REMOTE_ADDR');}
|
||||||
|
else{$_SERVER['ONECOM_CLIENT_IP']='0.0.0.0';}
|
||||||
|
|
||||||
|
define( 'WP_DISABLE_FATAL_ERROR_HANDLER', 'false' );
|
||||||
|
/* That's all, stop editing! Happy publishing. */
|
||||||
|
|
||||||
|
/** Absolute path to the WordPress directory. */
|
||||||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||||||
|
define( 'ABSPATH', __DIR__ . '/' );
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Sets up WordPress vars and included files. */
|
||||||
|
define('WP_HOME', 'https://medcore.flatlogic.app');
|
||||||
|
define('WP_SITEURL', 'https://medcore.flatlogic.app');
|
||||||
|
require_once ABSPATH . 'wp-settings.php';
|
||||||
638
wp-content/uploads/fusion-scripts/02d71013b2775b83fd554313ba7ef544.min.js
vendored
Normal file
638
wp-content/uploads/fusion-scripts/02d71013b2775b83fd554313ba7ef544.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
743
wp-content/uploads/fusion-scripts/115a8fc0320249c3fcc44edff2abf219.min.js
vendored
Normal file
743
wp-content/uploads/fusion-scripts/115a8fc0320249c3fcc44edff2abf219.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
672
wp-content/uploads/fusion-scripts/986a316ce3a4996976fe76953ef724b2.min.js
vendored
Normal file
672
wp-content/uploads/fusion-scripts/986a316ce3a4996976fe76953ef724b2.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
778
wp-content/uploads/fusion-scripts/c23d0f8f73086e0b4a2c4edf2691a383.min.js
vendored
Normal file
778
wp-content/uploads/fusion-scripts/c23d0f8f73086e0b4a2c4edf2691a383.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
778
wp-content/uploads/fusion-scripts/df7475ae582be5640bacfcadf2e43c92.min.js
vendored
Normal file
778
wp-content/uploads/fusion-scripts/df7475ae582be5640bacfcadf2e43c92.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
743
wp-content/uploads/fusion-scripts/f6c031c15c9918ac15a4233d3e1840bf.min.js
vendored
Normal file
743
wp-content/uploads/fusion-scripts/f6c031c15c9918ac15a4233d3e1840bf.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
672
wp-content/uploads/fusion-scripts/fd28edc32f969c6df85d0beb408d9663.min.js
vendored
Normal file
672
wp-content/uploads/fusion-scripts/fd28edc32f969c6df85d0beb408d9663.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
609
wp-content/uploads/fusion-styles/034fbec9a97c1064790fc5b2b7bd60f2.min.css
vendored
Normal file
609
wp-content/uploads/fusion-styles/034fbec9a97c1064790fc5b2b7bd60f2.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -2,9 +2,9 @@
|
|||||||
# https://curl.se/docs/http-cookies.html
|
# https://curl.se/docs/http-cookies.html
|
||||||
# This file was generated by libcurl! Edit at your own risk.
|
# This file was generated by libcurl! Edit at your own risk.
|
||||||
|
|
||||||
#HttpOnly_medcore.one FALSE / TRUE 0 wordpress_logged_in_ad8872871f579b3fc016b52fdc0c519e Lord%7C1770560765%7C9FEdw14gCmzKukjfIlMs6ul9VLPH4bxqIu2YpJfbfmS%7C759404c3a73464a9f96b97bde539e4a82a5b1df170529c552096a225a39f5d2d
|
#HttpOnly_medcore.one FALSE / TRUE 0 wordpress_logged_in_ad8872871f579b3fc016b52fdc0c519e Lord%7C1778338827%7CSEJuedJDUtyc9MbCP7sZvVjsFpInXkq9QFzIxPK81Ze%7Cfdd7f54f532d24d4a013906008d88c4c3232cefe04e1fec21e1de5b208e8d06e
|
||||||
#HttpOnly_medcore.one FALSE /wp-admin TRUE 0 wordpress_sec_ad8872871f579b3fc016b52fdc0c519e Lord%7C1770560765%7C9FEdw14gCmzKukjfIlMs6ul9VLPH4bxqIu2YpJfbfmS%7C9de8689660464c7ac9e484533451b4b5b6ab11821866a91ca67a7371c21d790b
|
#HttpOnly_medcore.one FALSE /wp-admin TRUE 0 wordpress_sec_ad8872871f579b3fc016b52fdc0c519e Lord%7C1778338827%7CSEJuedJDUtyc9MbCP7sZvVjsFpInXkq9QFzIxPK81Ze%7C571d943fdcaeb5990e08e07722ab2dd154b58857e4eb2a4efae76c168b81109d
|
||||||
#HttpOnly_medcore.one FALSE /wp-content/plugins TRUE 0 wordpress_sec_ad8872871f579b3fc016b52fdc0c519e Lord%7C1770560765%7C9FEdw14gCmzKukjfIlMs6ul9VLPH4bxqIu2YpJfbfmS%7C9de8689660464c7ac9e484533451b4b5b6ab11821866a91ca67a7371c21d790b
|
#HttpOnly_medcore.one FALSE /wp-content/plugins TRUE 0 wordpress_sec_ad8872871f579b3fc016b52fdc0c519e Lord%7C1778338827%7CSEJuedJDUtyc9MbCP7sZvVjsFpInXkq9QFzIxPK81Ze%7C571d943fdcaeb5990e08e07722ab2dd154b58857e4eb2a4efae76c168b81109d
|
||||||
#HttpOnly_wp-test-4446.dev.flatlogic.app FALSE /wp-content/plugins TRUE 0 wordpress_sec_c158bb965d8d854eae35903dd299147b Lord%7C1770560109%7CjW7aBMC2xLhajHe5Gv6aReOR1i7L8arvB1yKGDaOVww%7C21ec4100e80b6e7299a8ecc2bb0826967c83411107cae0aafdbf5098bbb91c8d
|
#HttpOnly_wp-test-4446.dev.flatlogic.app FALSE /wp-content/plugins TRUE 0 wordpress_sec_c158bb965d8d854eae35903dd299147b Lord%7C1770560109%7CjW7aBMC2xLhajHe5Gv6aReOR1i7L8arvB1yKGDaOVww%7C21ec4100e80b6e7299a8ecc2bb0826967c83411107cae0aafdbf5098bbb91c8d
|
||||||
#HttpOnly_wp-test-4446.dev.flatlogic.app FALSE /wp-admin TRUE 0 wordpress_sec_c158bb965d8d854eae35903dd299147b Lord%7C1770560109%7CjW7aBMC2xLhajHe5Gv6aReOR1i7L8arvB1yKGDaOVww%7C21ec4100e80b6e7299a8ecc2bb0826967c83411107cae0aafdbf5098bbb91c8d
|
#HttpOnly_wp-test-4446.dev.flatlogic.app FALSE /wp-admin TRUE 0 wordpress_sec_c158bb965d8d854eae35903dd299147b Lord%7C1770560109%7CjW7aBMC2xLhajHe5Gv6aReOR1i7L8arvB1yKGDaOVww%7C21ec4100e80b6e7299a8ecc2bb0826967c83411107cae0aafdbf5098bbb91c8d
|
||||||
#HttpOnly_wp-test-4446.dev.flatlogic.app FALSE / TRUE 0 wordpress_logged_in_c158bb965d8d854eae35903dd299147b Lord%7C1770560109%7CjW7aBMC2xLhajHe5Gv6aReOR1i7L8arvB1yKGDaOVww%7C77914a4c42844c87a4d43e438f7fa4f92c3ae877992e6529ffef6533ee556b3c
|
#HttpOnly_wp-test-4446.dev.flatlogic.app FALSE / TRUE 0 wordpress_logged_in_c158bb965d8d854eae35903dd299147b Lord%7C1770560109%7CjW7aBMC2xLhajHe5Gv6aReOR1i7L8arvB1yKGDaOVww%7C77914a4c42844c87a4d43e438f7fa4f92c3ae877992e6529ffef6533ee556b3c
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user