Forum Replies Created

Viewing 15 replies - 1 through 15 (of 111 total)
  • I have the same error and set up my own API with a credit card attached to the account. What gives?

    Thread Starter svsdnb

    (@svsdnb)

    Actually wp-config was 440. I changed it to 755 and then got these new errors

    PHP Notice:  Undefined index: SERVER_NAME in phar:///usr/local/bin/wp/php/WP_CLI/Runner.php(1138) : eval()'d code on line 21
    PHP Notice:  Undefined index: SERVER_NAME in phar:///usr/local/bin/wp/php/WP_CLI/Runner.php(1138) : eval()'d code on line 22
    PHP Notice:  Undefined index: HTTP_X_FORWARDED_PROTO in phar:///usr/local/bin/wp/php/WP_CLI/Runner.php(1138) : eval()'d code on line 34
    PHP Warning:  include(/var/www/html/wordpress/saltsinc.php): failed to open stream: Permission denied in phar:///usr/local/bin/wp/php/WP_CLI/Runner.php(1138) : eval()'d code on line 52
    PHP Warning:  include(): Failed opening 'saltsinc.php' for inclusion (include_path='phar:///usr/local/bin/wp/vendor/phpunit/php-token-stream:phar:///usr/local/bin/wp/vendor/phpunit/phpunit-mock-objects:phar:///usr/local/bin/wp/vendor/phpunit/php-code-coverage:phar:///usr/local/bin/wp/vendor/phpunit/phpunit:phar:///usr/local/bin/wp/vendor/symfony/yaml:.:/usr/share/pear7:/usr/share/php7') in phar:///usr/local/bin/wp/php/WP_CLI/Runner.php(1138) : eval()'d code on line 52
    PHP Warning:  require_once(/var/www/html/wordpress/wp-content/db.php): failed to open stream: Permission denied in /var/www/html/wordpress/wp-includes/load.php on line 398
    Warning: require_once(/var/www/html/wordpress/wp-content/db.php): failed to open stream: Permission denied in /var/www/html/wordpress/wp-includes/load.php on line 398
    PHP Fatal error:  require_once(): Failed opening required '/var/www/html/obrerofiel/wp-content/db.php' (include_path='phar:///usr/local/bin/wp/vendor/phpunit/php-token-stream:phar:///usr/local/bin/wp/vendor/phpunit/phpunit-mock-objects:phar:///usr/local/bin/wp/vendor/phpunit/php-code-coverage:phar:///usr/local/bin/wp/vendor/phpunit/phpunit:phar:///usr/local/bin/wp/vendor/symfony/yaml:.:/usr/share/pear7:/usr/share/php7') in /var/www/html/obrerofiel/wp-includes/load.php on line 398
    Fatal error: require_once(): Failed opening required '/var/www/html/wordpress/wp-content/db.php' (include_path='phar:///usr/local/bin/wp/vendor/phpunit/php-token-stream:phar:///usr/local/bin/wp/vendor/phpunit/phpunit-mock-objects:phar:///usr/local/bin/wp/vendor/phpunit/php-code-coverage:phar:///usr/local/bin/wp/vendor/phpunit/phpunit:phar:///usr/local/bin/wp/vendor/symfony/yaml:.:/usr/share/pear7:/usr/share/php7') in /var/www/html/wordpressl/wp-includes/load.php on line 398
    Thread Starter svsdnb

    (@svsdnb)

    everything is 755

    Thread Starter svsdnb

    (@svsdnb)

    define('WP_SITEURL',            'https://'.$_SERVER['SERVER_NAME']);
    define('WP_HOME',               'https://'.$_SERVER['SERVER_NAME']);
    
    define('WP_CACHE',              getenv('SCALESTACK_WP_CACHE'));
    define('WPCACHEHOME',           $_SERVER['DOCUMENT_ROOT'].'/wp-content/plugins/wp-super-cache/');
    define('WP_DEBUG',              getenv('SCALESTACK_WP_DEBUG'));
    define('WP_DEBUG_DISPLAY',      getenv('SCALESTACK_WP_DEBUG') );
    define('WP_DEBUG_LOG',          false );
    define('WP_MEMORY_LIMIT',       getenv('SCALESTACK_WP_MEMORY_LIMIT'));
    define('WP_MAX_MEMORY_LIMIT',   getenv('SCALESTACK_WP_MAX_MEMORY_LIMIT'));
    
    define('FS_METHOD',             'direct');
    
    if (strpos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false)
           $_SERVER['HTTPS']='on';
    
    /** 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
     */
    include('saltsinc.php');
    
    /**#@-*/
    
    /**
     * 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
     *
    define('PODS_SHORTCODE_ALLOW_EVALUATE_TAGS',true);
    */
    
    define ('WPLANG', 'en_US');
    /* 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');
    
    Thread Starter svsdnb

    (@svsdnb)

    I have deactivated all plugins and switched to the default theme. Still same result.

    Thread Starter svsdnb

    (@svsdnb)

    I have removed the custom CSS to see if this was conflicting however it’s the same result.

    Thread Starter svsdnb

    (@svsdnb)

    UPDATE: I’ve bandaged this by using the following jQuery to remove paragraph tags with inside of it, however, I am still searching as to why in the editor additional line entries are being created and present.

    ` $(‘p’).each(function() {
    var $this = $(this);
    if($this.html().replace(/\s| /g, ”).length == 0)
    $this.remove(); }); `

    Thread Starter svsdnb

    (@svsdnb)

    I’ve sent you about 5-10 emails over the course of the past 2 months with no response back. These emails contain the urls.

    Thread Starter svsdnb

    (@svsdnb)

    This did not correct the issue.

    Thread Starter svsdnb

    (@svsdnb)

    Yes I’ve been there and emailing them for almost a month now with no response and no answer to their phone. Sounds like they took my money and ran at this point.

    Thread Starter svsdnb

    (@svsdnb)

    HELLO?! Is this how you treat paying customers?

    Thread Starter svsdnb

    (@svsdnb)

    Please answer me. I’ve paid you money.

    Thread Starter svsdnb

    (@svsdnb)

    Is this the level of support provided for paying for your service? You never reply to any emails and rarely reply to support here?

    Thread Starter svsdnb

    (@svsdnb)

    Any help, please? I’m a pro account holder.

    Thread Starter svsdnb

    (@svsdnb)

    Thank you… Here is a link to the example. I had to temporarily solve this by adding in additional lines into the content to trick it to place the data below the headshot and attorney data. Also, on a side note, notice the Attorney name aka the page title does not show up on this page however it does for other attorney’s.

    http://www.strasburger.com/attorneys/laura-reilly-ohara/

Viewing 15 replies - 1 through 15 (of 111 total)