jalal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Writing New Posts, regarding editing HTML sourceMake sure you have a status of “Editor” or “Admin” when you write the post.
Forum: Fixing WordPress
In reply to: Sorry, real newbie question about uploadsgwynap, to answer the question more generally… if you use your PC, drag the picture into the Rich Text Editor and then switch the RTE to display the HTML you will see what link has been inserted.
Then, when you don’t have the RTE handy, you know that it is a similar kind of link that you need to type into plain HTML.Forum: Fixing WordPress
In reply to: holy crap! 93 MB db: how to reduce?Yes.
You should be able to delete all references to b2stattraq and import the remainder into a new database.
If you think you may need the empty table, you could leave the ‘CREATE TABLE b2stattraq…’ section and just remove all the data inserts.
Forum: Alpha/Beta/RC
In reply to: 2.0 not generating permalinksYou need to update the functions-post.php and classes.php files.
I wrote a small article here.
Forum: Fixing WordPress
In reply to: WP 2.0 broke my permalink structureYeah, an updated functions-post.php and classes.php has fixed the problem for me as well!
Yay!
Forum: Fixing WordPress
In reply to: trouble passing more_file parameter to the_content()OK, so here is a solution that works for me, YMMV.
Lets assume that I originally had:
the_content( ‘(more…)’, 0, ‘articles.php’);
and that this would reroute the ‘(more…)’ link to said page.
Now, I have to add, at the top of the index file, the following:
function redir_article($data) {
$data = str_replace( "/?p", "/articles.php?p", $data );
return $data;
}
add_filter( 'post_link', 'redir_article');This seems to have the same effect…
Hope that helps someone out there…
Forum: Fixing WordPress
In reply to: trouble passing more_file parameter to the_content()Well, I’ve just downloaded and upgraded a site to V2.0 and it’s the same situation. The reason is simple, that the ‘the_content()’ function simply ignores the third parameter.
I’ve updated the Codex to reflect this.HTH
Forum: Your WordPress
In reply to: finally, something worth showing.Nice layout, even in Firefox.
I find that pastel text on grey a bit hard to read (on an LCD monitor)… apart from that, works well.Forum: Your WordPress
In reply to: The TechnofileHey, nice clean way to present a lot of information…
what platform does Absynthe run on anyway???
Forum: Fixing WordPress
In reply to: Edit files in WP 1.5What permissions do they have at the moment?
You shouldn’t need to do what you are doing, but if you want to do it anyway, you can do:
chmod -R 666 * BUT BUT…
that may have a disastrous effect on your directories/folders.To make a tree writable by the user try:
chmod -R u+w *
and writable by group
chmod -R g+w *‘-R’ means recurse through the directory tree.
Another option is to use find:
find . -type f -exec chmod u+w {} \;But, why do you need to do this???
Forum: Fixing WordPress
In reply to: WordPress to WordPressHah, MDV beat me by 80 secs… 🙂
Forum: Fixing WordPress
In reply to: WordPress to WordPresspodz is right… unless you want to put the old blog into a separate set of tables, in which case it should be straight-forward.
I mention that because you do say that you have been using the prefix feature of WP so maybe you have each blog with a different prefix.Forum: Plugins
In reply to: Referrer spammer caughtif ($lookup == “219.150.118.16” or $lookup == “161.58.59.8” or $lookup == “211.144.164.201” or $lookup =”216.34.38.81″)
Ya need another ‘=’ sign on the last comparison. As it is its an assignment, which is always true…
🙂
Forum: Fixing WordPress
In reply to: Popup CommentsPossibly dumb question… but are you sure you are using the classic theme and not the default theme?
Forum: Themes and Templates
In reply to: Add more than one bg image in css?If I understand the question, what you want to do is something like:
body {
background-image:url(images/image1.gif);
background-image:url(images/image2.gif);
background-image:url(images/image3.gif);
}
Right?You could try it, but my feeling is it ain’t gonna work.
What you would need to do is create three divs and give them a background image each.
But I may have misunderstood. It was the ‘two more elements on top… …on either side of the page’ that kind of made my eyes cross.