webjunk
Forum Replies Created
-
Forum: Plugins
In reply to: Guitar tuner Widget not working.Maybe I was not clear. Your <object> code was fine EXCEPT that you need within the object code give the exact URL to the the SWF. That is al I am doing on this page and this is Your tuner, right?
http://webjunkdemo.com/corsophoto/guitar-tunerThis is Exactly what I have for that page:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="600" height="288"> <param name=movie value="http://webjunkdemo.com/corsophoto/wp-content/uploads/tuner24.swf"> <param name=quality value=high> <embed src="http://webjunkdemo.com/corsophoto/wp-content/uploads/tuner24.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="600" height="288"> </embed> </object> <p>Guitar Tuner courtesy of the folks at Wimpy Player</p> <!-- END GUITAR TUNER CODE -->Forum: Plugins
In reply to: Guitar tuner Widget not working.For future reference when needing to paste large amounts of code use:
http://wordpress.pastebin.ca/The problem is that you did not give the exact directory to find tuner24.swf. Use a URL (http://) to the file where it actually exists and it will work without a plugin. Here is just the part to correct:
<param name=movie value="http://YOURDOMAIN.com/wp-content/uploads/tuner24.swf"> <param name=quality value=high> <embed src="http://YOURDOMAIN.com/wp-content/uploads/tuner24.swf" quality=highNow what I would like to see is a computer tuner that works like my chromatic electronic tuners…..
Forum: Plugins
In reply to: Contact Form 7 – Generating Reference NumberDo not have time right now to look at the exact but basically you can edit the form template (I think its in the CF7 functions.php)
and enter a new field and make it hidden. So like:
<input type=”text” name=”reference” value=”<?php echo time(); ?>” />This should put a UNIX timestamp in. Could get fancier and remove the leading digits or change to normal time formats. If you have real heavy traffic you might get duplicates but its to the second so would be rare. And if you really had to could add a random number to the end.
No. It formats according to sitemap.org
Are you using the newest version of CF7?
What are you usng for a shortcode?
Have a link to the page its on?
Have you tried changing to the default twentyten theme?
Tried disabling other plugins in case of a conflict?Forum: Plugins
In reply to: Contact Form 7 – Generating Reference NumberWould use the PHP Time function and make that a hidden field into the form.
Forum: Plugins
In reply to: Guitar tuner Widget not working.Maybe if you provided the name of the tuner or a link to where you got it from? Hard to answer your question without knowing how it works or what code its using
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Custom, text box error messagesWhy not just make those field Required?
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Can't see fields :(I think for most shortcodes you need the function the_content() in the loop for the template in use. Sounds like its missing from that particular theme’s template in use.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Need text area with scroll barOne more time as I said above:
The tags is because within a textarea it will not interpert html tags. That is why its a textarea. Not an HTML area. One of the reasons for usig a textarea is if you want to post html code that displays the actual tags.Just looked at the plugin. The plugin probably tries to create a robots.txt in the WP directory which is in /wp2 on yours. That will not work as it needs to be in the root. You can just create a robots.txt with any text editor but you will need to place it in the root of your site. They are very easy to setup. Simple rules:
*User-agent: the robot the following rule applies to
*Disallow: the URL you want to blockAs an example for yourself:
User-agent: * Disallow: /privatedirectory/ User-agent: baiduspider Disallow: / Sitemap: http://www.sceptique.ca/wp2/sitemap.xmlAllows all spiders to everything except /privatedirectory
Blocks Baidu from spidering anything on your site.
Points to your Sitemap.xmlForum: Fixing WordPress
In reply to: My blogs being hacked faster than I can fix themIf you read all of the lik you were given:
http://codex.wordpress.org/Moving_WordPressit gives detailed instructions on moving the site.
Do not see any robots.txt. Do not know what PC-robots.txt
is. If I can’t see it, Google can not either. Also you seem to redirect everything in root to /wp2. Not sure why you do that but up to you.
And since your sitemap.xml is in /wp2 you need a robots.txt in the root for autodiscovery to point to the sitemap like this:
Sitemap: http://www.sceptique.ca/wp2/sitemap.xmlDo not know how you are doing the redirect but you may (after creating one) need to exclude robots.txt in it.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Need text area with scroll barShould not use Notepad. It can put does breaks in which can cause problems. Use a text only editor. I like EditPad Pro but they have a free one too: http://editpadlite.com/