jocelynaz
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Mail 2 "From" field shows WordPressSure thing! This topic is now resolved. ??
Forum: Plugins
In reply to: [Contact Form 7] Mail 2 "From" field shows WordPressDisregard! I fixed the problem! ?? I only entered my email address in the From field in my Contact form. When I put my name and then my email in < >, it worked perfect.
Thanks for making a great plugin! LOVE it. It’s been very easy to use for me.
Thank you swingz! I was having the same problem with special characters showing up after I moved my blog to a new server. I changed the DB_CHARSET to latin1 and it fixed it. ??
Forum: Installing WordPress
In reply to: ABSPATH error — moved to new serverGot it fixed! I uploaded my old wp-config.php file (replaced info with new server info) and it worked.
For some reason, the wp-config.php file that IX web hosting created when it installed WordPress was a little different and it affected the ABSPATH.
Forum: Plugins
In reply to: [Plugin: Audio Player] Doesn’t seem to work with WP 2.6Yes, thanks for sharing about the new version! The older version was not working for me either. This version now works for me (just upgraded to 2.7)! I too was not aware a new version even existed.
Thanks again!
Forum: Fixing WordPress
In reply to: Can’t login – pluggable.php on line 694THANK YOU!! This totally helped me out! My error was the same exact thing except it referred to my wp-config.php file. Turns out I had whitespace at the end of it. Once I deleted the whitespace, it worked out fine!
Thanks a bunch!
Forum: Fixing WordPress
In reply to: Images: was working now not!Oops! I forgot to mention that instead of using ‘wp-content/myimages’, I changed it to ‘wp-content/uploads’
Forum: Fixing WordPress
In reply to: Images: was working now not!YAY! It’s all working now. Turns out my file upload path was not matching up. I used the code below and it’s now working fine! ?? I found this in the FAQ Forum Hot Topics page (DOCS) under Question #3.
How do I change the file upload path?
The default upload path can be changed by adding a line of code to your wp-config.php file.Just BEFORE the line that says require_once(ABSPATH.’wp-settings.php’); add this line:
define(‘UPLOADS’, ‘wp-content/myimages’);
In the example above, this will result in uploads being placed in your wp-content/myimages/2006/01 folder. Note that 2006 is the current year, and 01 is the current month, in this case January. If the myimages directory does not exist it will be created as long as the parent folder wp-content is writeable.