ioni
Forum Replies Created
-
Forum: Plugins
In reply to: WP_Cache works in 2.8.4?Forum: Fixing WordPress
In reply to: WP internal Object Cache (not plugin)Found another thread on the matter, does not seem to resolve the problem
http://ww.wp.xz.cn/support/topic/309914Forum: Plugins
In reply to: Cache Hotlinked Images When PostingDo you mean ‘retrieve them’ from their remote location and save/use them locally?
Forum: Plugins
In reply to: OpenID login failed: Invalid openid.mode \’\’Solution is easy:
It appears that OpenID was triggering a mod_security rule set by the hosting company. Simple letter rto support solved mine.
However, the issue is ver yspecific and may not be recognised straight away by the support personnel, so I suggest you check here:
Forum: Plugins
In reply to: OpenIDloginfailed:Invalidopenid.modeNomodesetStill the same here…
No idea what to think of it – the same configuration works perfectly with Bluehost, but deos not seem to work with HostgatorForum: Plugins
In reply to: OpenID. Fatal errorFunny enough, aborisov, I was able to login to your blog using OpenID – but OpenID provided by my other WP Blog… bit not much anywhere else…
THere is something seriously wrong with this plugin
Forum: Plugins
In reply to: OpenID Plugin ?Well, OpenID plugin is for you!
You can set it to allow the registered users use their profile pages as OpenIDForum: Plugins
In reply to: OpenIDloginfailed:Invalidopenid.modeNomodesetSame here.
All systems nominal, php5, WP 2.8.2., latest OPenID and XRDS simple
Site hosted on Hostgator. No problem in logging with my OpenID elsewhere – but in my blog..You can check if it will work with you here: sunshine.by – just to see what I mean.
Forum: Installing WordPress
In reply to: Failed to open streamIt just hapens sometimes – i have checked and the file was missing, so I have just uploaded it once again. Done.
Forum: Installing WordPress
In reply to: I don’t get how to begin with the wp-config-sample doc???I take it you have a GoDaddy account.
Go to the Control Panel and check the MySQL (which is a database. whouth getting too technical, this is a database you site data is stored and retrieved from).
There you would need to create a new database (say, ‘mydatabase’). Check its name – in most cases it is your_user_name_at_Go_Daddy_ mydatabase.
Then you have to create a user, say, ‘megauser’. Check what is created – in most cases this would be your_user_name_at_Go_Daddy_ megauser. You can either create your own password or use the suggested one – your choice.
After that you have to add user to database created. Easy drop-down menu will help you with that (grant All priviledges).
===
So lets assume, that you username with Godaddy is pepperdiva and your site address is pepperdiva.com.If you have followed the instructions above, you should
(1) create database and user as noted above
(2) add user to database
(3) check pepperdiva.comThere you would be offerd to enter this information in the forms:
pepperdiva.com – is the address
pepperdiva_ mydatabase – is the MySQL database and
mydatabase_megauser – the user
password – as the above.That’s it!
Forum: Installing WordPress
In reply to: I don’t get how to begin with the wp-config-sample doc???Easy 🙂
Just do not write anything there – go to your site and you would see the ‘Famous Five Minute Install’.Forum: Fixing WordPress
In reply to: Replace title and subtitle on header with imageAh so easy!
The file of your theme (suppose that is index.php) would contain the code <div class=”span-24 header”>. You need to change the contents of this DIV to reflect your needs.You can even leave the H1 tag – and place the image into it like:
<h1><img src="your_image.jpg" alt="<?php blog_info('title')?>" rel="bookmark index" /></h1>This would help, I suppose
Forum: Fixing WordPress
In reply to: Replace title and subtitle on header with image<head> is no place to do that – it is meta part of the document, that user normally does no even see (well, only title on the browser’s window).
So in order to do that you need to recode HTML part of your theme.
A link would be perfect!
Forum: Fixing WordPress
In reply to: Displaying images in categories and archivesHi there,
Do you want the Title of the post be replaced with the image or the excerpt?
Forum: Fixing WordPress
In reply to: wp_get_attachment_imageDepends on the version of WP you are using.
My function for that looks like the following:
//get the post attachments $attachments = get_children($att_array); //make sure there are attachments if (is_array($attachments)){ //loop through them foreach($attachments as $att){ //find the one we want based on its characteristics if ( $att->menu_order == 0){ $image_src_array = wp_get_attachment_image_src($att->ID, $size); //get url - 0 - url; 1 and 2 are the x and y dimensions $url = $image_src_array[0]; $caption = $att->post_excerpt; } } }If you check ioni2 you would see it in action