Marcomail
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: google site verification problemif i send an HEAD request with a non-existent page server return the HTTP Status Code 200 OK ??
Forum: Fixing WordPress
In reply to: google site verification problemand if i try to use the file method i receive this error:
https://www.google.com/support/webmasters/bin/answer.py?answer=35229&hl=en
Forum: Plugins
In reply to: My Sitemap Generator Plugin – New Versionif i click on the second page there isn’t any link, i must use “0” to show allt he link in the same page
Forum: Plugins
In reply to: automatic meta keywordNow i use head meta description plugin for the description and it is great beacuse create the meta desc on fly…i would something similar for the keywords. i would use the title words for the keywords
Forum: Plugins
In reply to: filter show an image from the contentwhat is a static front page ? I use the normal wordpress loop to show the latest article….i would add near every article an image extracted from the content of the article, without use everytime a custom HTMl code or an excerpt…i think is possible add a filter to take an image from the content and show it near every article
Forum: Plugins
In reply to: filter show an image from the contentbump
Forum: Fixing WordPress
In reply to: don’t see user drafti see my drafts, but not the other user drafts
Forum: Fixing WordPress
In reply to: WP 2.0 – htaccess overly aggressive? 404’s galoreI had the same problem to enter in /cgi-bin/scripts…now i’ve solved using:
# WP Fix
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/cgi-bin/scripts/(.*)$ [OR]
RewriteCond %{REQUEST_URI} ^/failed_auth.html$
RewriteRule ^.*$ – [L]
</IfModule>
# END WP fixBut someone could me explain what is the second line:
RewriteCond %{REQUEST_URI} ^/failed_auth.html$Forum: Plugins
In reply to: login ok but the function is stoppedbump
Forum: Fixing WordPress
In reply to: enter in a subdirectory of my FTPbump
Forum: Plugins
In reply to: profile page modifications not in the dashboardbump
Forum: Plugins
In reply to: Why this function don’t work with my scriptis possible the problem is the string:
$post_content = "<a><img src=\"" . $rel_path . $fileuploaded . "><a>" ;</a>
Forum: Plugins
In reply to: Why this function don’t work with my scripti try to use directly the function but is the same
$post_content = wp_ozh_click_modifyhrefs ($post_content);
Forum: Plugins
In reply to: Why this function don’t work with my scriptMMmmmmmm the problem is not the plugin…i’ve a separated page that i use to quick submit article outside the dashboard.
i try to include the filter but it doesn’t work
$post_content = apply_filters(‘the_content’, $post_content);
why ? i’ve included two files at the top of this page:
require_once(‘wp-blog-header.php’);
require_once(‘wp-admin/admin-functions.php’);Forum: Plugins
In reply to: Why this function don’t work with my scriptThanks Otto, for now i would use this plugin, i’m not an expert of php to modify it.
I think this is the filter at the bottom of the plugin:
if ($wp_ozh_click[‘do_posts’])
add_filter(‘the_content’, ‘wp_ozh_click_modifyhrefs’, 10);How can i integrate this filter in my script ? I’ve the_content saved in $post-content, you can see this in template-functions-post.php
$post_content = apply_filters(‘content_save_pre’, $post_content);