tslice
Forum Replies Created
-
Forum: Plugins
In reply to: wp_insert_post error, in_array wrong datatype for 2nd argumentLooks like a fix here: https://core.trac.www.ads-software.com/ticket/12078
Forum: Plugins
In reply to: wp_insert_post error, in_array wrong datatype for 2nd argumentI’m also getting this error, the in_array error in post.php line 1997
Forum: Fixing WordPress
In reply to: 2.7 Gallery not workingAnyone? Am I on my own here?
Forum: Fixing WordPress
In reply to: 2.7 Gallery not workingAnyone?
Forum: Fixing WordPress
In reply to: Convert Curly Quotes, quotes ending up in permalinksAnyone?
Forum: Fixing WordPress
In reply to: How to get permalink to the 2nd post on Index.phpPlace within wp loop:
<?php $post2 = get_posts('numberposts=1&offset=1' ); ?> <a href="<?php echo get_permalink( $post2[ 0 ]->ID ); ?>"><?php echo $post2[ 0 ]->post_title; ?></a>
Forum: Fixing WordPress
In reply to: Server path for uploaded media?Forum: Fixing WordPress
In reply to: Admin Menus (question on an example from the codex)mt = menu test, and the _e() function:
/**
* Displays the returned translated text from translate().
*
* @see translate() Echos returned translate() string
* @since 1.2.0
*
* @param string $text Text to translate
* @param string $domain Optional. Domain to retrieve the translated text
*/
function _e($text, $domain = ‘default’) {
echo translate($text, $domain);
}Forum: Fixing WordPress
In reply to: Dashboard error, headers already sentOh, I imagine it is a plugin error. I will try disabling/enabling them as a start.
Forum: Fixing WordPress
In reply to: Dashboard error, headers already sentWell, I have plugins from wp-page navi, wp-db-manager, wp-user-manager and several home-made plugins.
Forum: Fixing WordPress
In reply to: Missing PanelsI’m guessing there can’t be any plugin-conflicts since you can’t even access plugins, so I’m wondering if you have a corrupted download of wp. Try re-downloading wordpress (if you haven’t already of course).
Forum: Fixing WordPress
In reply to: Plugin shortcode help?Have you read the shortcode api codex?
I’m not familiar with either shortcode or their usage, but the functionality you’re looking for may not be supported.Forum: Fixing WordPress
In reply to: Show 1 post on index and multiple on inner pageNot sure if this is the answer you’re looking for, but you will most likely have to edit your theme and use a wp function:
Forum: Fixing WordPress
In reply to: problem moving to new hosting plan <–and new DB nameWorking with a live site and my local site, I usually dump the raw sql from php my admin ( using the export function ) and then edit the sql syntax for the new db. This helps as I have to rename guid’s for localhost as well. This of course requires you to be a little familiar with SQL.
Anyway, if your database is working, all you really need to do is export and import the data, usernames and passwords and db access should not get in the way.
Forum: Fixing WordPress
In reply to: phpinfo(); -> display_errors = Off with define(‘WP_DEBUG’, true);I fixed it, added ini_set(“display_errors”, 1); to wp-settings.php after the WP_DEBUG check for true.