fireandsalt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help me to remove iframeTry reading this:
http://wordpress.org/support/topic/260572
Then try this to clean it all up:
http://www.techno360.in/7-steps-to-remove-iframe-virus-from-your-wordpress-blog/
Forum: Fixing WordPress
In reply to: Cannot automatically upgradeDoes your host use CPANEL? If so, log in to cpanel usually http://www.mysite.com/cpanel
Enter username and password for your site
Scroll down to software / services and look for PHP Config
Click it
Select PHP5 (Single php.ini) option
Click save changes on the bottom.
Now, manually FTP (I like Filezilla) into your site and look for php.ini (usually in public_html folder). Download the file to your computer so you can edit it. Using a text editor (I prefer Notepad++) locate the following by using find:
memory_limit = 48M ; Maximum amount of memory a script may consume (10MB)Change the value to at least 32M and your scripts should start executing more properly.
Finally, make sure wp-content/upgrade and all sub folders and files have at least 755 permissions using CHMOD (If using filezilla, right click on folder, choose permissions, type in 755 in numeric value, select recurse into subdirectories, click OK).
Forum: Fixing WordPress
In reply to: htaccess questionDitto what Shane G said…
Forum: Fixing WordPress
In reply to: Fatal error in default-widgets.php on line 735 (WordPress 2.9)Can you FTP into your site?
If so, FTP in to your site (I recommend Filezilla) and navigate to
public_html>mysite>blog>wp-content>plugins>simple-tags
Delete that folder (simple-tags) and all files in it.
This will remove the plugin, and you should be able to get rid of the error.
Forum: Fixing WordPress
In reply to: Post by emailAlternatively, edit your wp-mail.php script by finding:
// Author not found in DB, set status to pending. Author already set to admin. $post_status = 'pending';And replace it with:
// Author not found in DB, set status to pending. Author already set to admin. $post_status = 'publish';Just be careful doing that though. By changing that portion of the code, you are allowing posts from any e-mail account in the world to start publishing posts automatically to your blog.
Forum: Fixing WordPress
In reply to: Post by emailIf your blog is on your main site, you use http://www.mysite.com/wp-mail.php
If your blog is in a sub folder, you use http://www.mysite.com/blog/wp-mail.php
* replace ‘blog’ with whatever the folder’s name is.Also, make sure you are sending the e-mail from an account in your users with editor permissions. Example:
Go to Users > Add new…
Call the user Me at work, or Me going mobile, etc…
Add your Name to the First and Last blocks
This is the important part!!!!! type in the e-mail address you want to send from!
Make this user an editor or adminNow, send an email from the e-mail account of the user you just added to your secret e-mail address you set up on the writing page (Settings…writing).
Run the wp-mail.php script by typing the script path into your browser.If your post came out funky looking, be sure to send only plain text.
If your post came over in a pending status, you sent it from an e-mail account that is not an editor or admin on your blog.
I’d recommend setting the wp-mail.php script in the footer of your theme as explained in the Codex help page for sending via e-mail. Put the iframe in just before </body>.
Happy posting!
Forum: Fixing WordPress
In reply to: post-by-email: shortcodes not workingShort codes only seem to work with wordpress.com. I have not seen it work using self hosted wordpress blogs (wordpress.org).
Forum: Fixing WordPress
In reply to: Post by EmailMake sure you add a user under Users…Add new… With the e-mail address you are trying to send from.
Example:
If you are trying to post to your blog using a gmail account named thisisatestemailaccount@gmail.com then you need to create a new user in your blog with an email address of thisisatestemailaccount@gmail.com. Make sure he is an editor and then send an email from thisisatestemailaccount@gmail.com to thisismysupersecretemailaccount@gmail.com
Fill in the Subject and the Body. Send in plain text, otherwise the post gets all garbled up.
Then go to your wp-mail.php file and run it (or add the iframe as discussed in the codex to the footer).
Happy posting!
Forum: Fixing WordPress
In reply to: Post by EmailMake sure you add a new user with the e-mail you are sending from in Users… Add new…
Give that user Publishing rights.
Forum: Themes and Templates
In reply to: ModXBlog theme problemanyone?
Forum: Themes and Templates
In reply to: two column theme problemThanks. I’ll look into it.