jamiefehr
Forum Replies Created
-
Forum: Plugins
In reply to: [Flamingo] Delete permanently seems to be missing from trash section.I went and added a few lines of sql to clear out the postmeta table also, you need to figure out what your flamingo adds. That said, I really would like a button….
DELETE FROM wp_posts WHERE meta_status='flamingo-spam'; DELETE FROM wp_postmeta WHERE meta_key='_from'; DELETE FROM wp_postmeta WHERE meta_key='_from_name'; DELETE FROM wp_postmeta WHERE meta_key='_from_email'; ...Forum: Fixing WordPress
In reply to: Monochrome theme headerif you’re using the default theme it should be fairly simple.
Here is a how-to I found.
http://www.aetas.dk/archives/8Forum: Fixing WordPress
In reply to: Where is the Public_html folder?not to be discouraging, but these are questions your webhost has to answer.
Forum: Fixing WordPress
In reply to: Sorry, but you are looking for something that isn’t here.what does your themes index.php look like? you need to have some sort of successful posts query there if you want anything to show up. maybe your theme is set up to only retrieve posts of a certain category for the homepage?
Forum: Plugins
In reply to: Tutorial about wp-cron.phpwp-cron is activated by page views, when a page is loaded it checks if the time set for a scheduled task has past and if so does it. I can’t find any really good tutorials either, despite having so much time pass.
this is all I’ve got thats any good so far:
http://codex.ww.wp.xz.cn/Function_Reference/wp_schedule_eventForum: Plugins
In reply to: Strange problem with pluginI’m working on it. There’s something really strange about how recent versions of wordpress interact with vbulletin.
Forum: Fixing WordPress
In reply to: wp-admin / options / -plugin- : “cannot load 0.”I recognize that this might be a little late but I was encountering the same problem and was able to discover what was the offending code.
I don’t know what your situation was but for me, I had added this to wp-config.php:
// vbulletin integration $curdir = getcwd (); chdir('/www/site/forum'); require_once('/www/site/forum/global.php'); chdir ($curdir);to be able to display vbulletin user info on my template pages and when I removed the code things started to work again.
Forum: Fixing WordPress
In reply to: Custom location of wp-content in 2.6As best as I can figure your only option with
wp-config.phpis to move it up one directory level to be above the wordpress core if you have moved your wordpress core files down in a sub-folder. And to move yourwp-contentfolder you need to add two directives to yourwp-config.phpfile:define('WP_CONTENT_DIR', '/library/webserver/documents/site/wp-content'); define('WP_CONTENT_URL','http://site.com/wp-content');it’s worth noting that you can change the name of the folder from
wp-contentto something else if you want.Forum: Plugins
In reply to: setup_postdata problem<?php $issue_articles = $wpdb->get_results(" SELECT * FROM $wpdb->posts LEFT JOIN $wpdb->postmeta ON($wpdb->posts.ID = $wpdb->postmeta.post_id) WHERE $wpdb->posts.post_status = 'publish' AND $wpdb->postmeta.meta_key = 'magazine' AND $wpdb->postmeta.meta_value = $display_issue ORDER BY $wpdb->posts.post_date DESC ", OBJECT); ?> <?php foreach($issue_articles as $issue_article) : the_post($issue_article); ?> <li><a href="<?php the_permalink(); ?>"><?php the_ID(); ?></a></li> <?php endforeach; ?> </ul>This code returns the ID’s of the posts that would regularly be displayed, not the ones from the custom query. However when I add that suspicious, heavy handed code all of a sudden the posts from the custom query are getting displayed.
I don’t want to complain, but I just wish I knew what was going on.
Forum: Installing WordPress
In reply to: all links point to the homepageBut I shouldn’t need mod_rewrite to use http://mmcmedia.org/?p=2 should I? The permalinks page has information on making permalinks work on a windows server, but that doesn’t help because even the default basic links don’t work.
Forum: Installing WordPress
In reply to: Installed – 500 internal server errorI got that error message once, and I believe that it was because my computer or text editor had munched the line endings or something. And so what I did was re uploaded all the files with a different ftp client from a different computer and it worked (originally I was using cyberduck on a mac and then I used transmit).
Forum: Themes and Templates
In reply to: Big problem with Mac IE.Mac IE isn’t even supported by microsoft anymore, I have never bothered to cover it, because the stats for the sites I have made, show that no one has ever used it to access any of my sites.
Forum: Installing WordPress
In reply to: Image upload does not workhttp://ww.wp.xz.cn/support/topic/76247, this isn’t the only thread reporting this error. Image uploading is working fine for me locally on OSX, using the in-built apache and php with the mysql 5 binary from the mysql site. But on my windows hosting provider I get that error message.
Forum: Installing WordPress
In reply to: Cannot upload image file when writing postIs the folder above your uploads folder also set to
777? Also what kind of webserver are you using? I have that file uploads work brilliantly on Apache, but are not nearly as fun on IIS or Lighttpd.Forum: Installing WordPress
In reply to: Cannot login, ever!From what I hear this sounds like a problem in the install? If so, what happens if delete all the database tables and re-install?