Tag Info

New answers tagged

1

After trying many things with permissions, I found my problem. I uses a plugin called Duplicator to move WordPress installs around from server to server, it handles changing URLS's and Paths. So in settings => Media => Store uploads in this folder it was setting the Full Filepath to my Uploads folder. I changed it to be relative wp-content/uploads ...


0

There is a SQL query in the theme file /themes/ExtraGrid/content-single.php, and it is asking for a column that doesn’t exist. This seems to be a commercial theme, so we can just guess why that query exists. Maybe you forgot to set a required theme option, or your tables are just incomplete.


1

WordPress theme templates are not meant to be executed directly. They are loaded by WordPress core (after appropriate environment had been set up) according to Template Hierarchy.


1

Generally this happens when someone has mistakenly put index.php from a theme in the WP install folder, where it overwrites the index.php that is the main WordPress file. Download WordPress again, and take the one file, index.php from its root folder, replacing the file you now have as index.php source


0

I made an answer out of this now to give a more detailed write-up to your question. As the botnet is so large and the attack is happening with so much IPs (some providers say they have seen >90.000 different addresses) it makes no sense anymore to start blocking single IPs (using plugins like Limit Login Attempts or fail2ban at the server side) like we did ...


0

If you have already installed w3tc I would strongly suggest that you try to optimize the settings. Use page caching via memcache and a static asset CDN. This gives a performance boost of about ~95% for not logged in users for me on every page i used it. Page caching, database caching and object caching are particularly usefull in taking load of the ...


0

The codex contains a nice diagram regarding Roles & Capabilities. As you can see the Subscriber role has only one capability: read. The first role that has the capability upload_files is the author role. That is the reason why in a default/blank wordpress install a subscriber is not able to upload any files. If you haven't changed anything (via ...


0

The Subscriber user role does not have write permissions. http://codex.wordpress.org/Roles_and_Capabilities#Subscriber Perhaps you should give the user the Contributor role. Contributor delete_posts edit_posts read http://codex.wordpress.org/Roles_and_Capabilities#Contributor


0

function jal_install() { global $jal_db_version; $sql = "CREATE TABLE IF NOT EXISTS WP_AWESOME_TABLES ( id mediumint(9) NOT NULL AUTO_INCREMENT, PRIMARY KEY id (id) );"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); dbDelta( $sql ); add_option( "jal_db_version", $jal_db_version ); } ...


1

I have encountered the same kind of issue before, as you have already noted down the problem boiled down to mysql not accepting too many connections, The solution we implemented was to apply proper caching (check how often the cache is invalidated and other caching settings) and upgrade the mysql server. As a quick fix, you could flush the connections on ...


0

It worked for me. http://www.sixteeneighteen.co.uk/wp-content/uploads/2013/04/remove01.jpg i dont see any problem with the link.


1

When $ticket_details['assigned_to']->display_name is not set, get_user_by() has returned not an object but FALSE. First test if you got an object: $user = get_user_by('id', get_post_meta( $post_id, '_responsible', true)); if ( ! is_object( $user ) ) return; $ticket_details['assigned_to'] = $user; display_name is always set if there is an user ...


0

Normally, you'll get those kinds of results because you have file permissions issues. The files all need to be readable and executable by whatever user the WordPress installation is running as (e.g. on most typical webservers, including if you're running LAMP/MAMP locally, it's usually something like the www user and staff group). You'll need to check the ...



Top 50 recent answers are included