cyberanto
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: http error when uploading photosI resolved the problem!
After reading this post (Fix for auto upgrading issue with 1and1 Hosting), written by davidizor, I have realized that it’s a PHP problem. I had to put my server on PHP 5 instead of PHP 4.
To do so, as it was proposed on the mentionned post, I added the following three lines of code to my .htaccess file:
Options All -Indexes
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .phpAs my .htaccess file already had code in it. I added those three lines at the complete end. Now uploading photos on my site is working 🙂
Forum: Fixing WordPress
In reply to: Error 500 – Internal server errorI think it’s a php problem with 1and1.com.
I wrote the following in my .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Options All -Indexes
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
# END WordPressAnd now it works, no more Error 500.
But I have another problem now… My Exec-PHP plugin is not working 🙁
Forum: Fixing WordPress
In reply to: Error 500 – Please help!@ Esmi,
I think it’s a php problem with 1and1.com.
I wrote the following in my .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Options All -Indexes
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
# END WordPressAnd now it works, no more Error 500.
But I have another problem now… My Exec-PHP plugin is not working 🙁
Forum: Fixing WordPress
In reply to: Sudden (and now consistent) 500 Internal Server ErrorI am sorry that no one was able to help you with your post editing problem. But I realize that you wrote this sometime ago and your blog might be running well by now.
I was having the same problem as you, meaning that I couldn’t edit an important post I had for about a week! But I followed your steps, and now my blog is working!!!
Thank you very much!
Forum: Fixing WordPress
In reply to: Error 500 – Internal server errorNo, but I am using these plugins:
Akismet
Exec-PHP
Limit Posts
Sociable
Subscribe To Comments
WP-PageNaviI had that problem (editing that particular post) for a few weeks now. I use to disactivate some plugins, and it would work. But lately even if I disactivate all plugins (all but Exec-Php) I cannot update my important post anymore 🙂
Forum: Fixing WordPress
In reply to: Error 500 – Internal server errorSure Jonimueller, I would love that. But still I’m unable to update, I will try again.
Forum: Fixing WordPress
In reply to: Error 500 – Internal server errorJonimueller,
Can you see the side bar on the right (it has the sections About Me, Advertisement, Facebook, Recent Posts, etc.)?
Forum: Fixing WordPress
In reply to: Error 500 – Internal server errorJonimueller,
I use to have the 2.8.x version. I did go to my webhosting account and updated to mysql 5 and did a backup as well like you recommended.
I did not update the permalink structure at all.
Please help! 🙂
Forum: Fixing WordPress
In reply to: [Plugin: Sociable] How do you resize the images so they are larger?Thank you guys for this post!
I was able to modify my sociable pluggin to put other icons. Here is an example:
http://www.cyberanto.com/articles/cafe-world-from-zynga/
@benjaminjtaylor, I used .png icons, not .jpg. And the background was transparant. I did it all on Photoshop with files that I originally found on the net.
Forum: Plugins
In reply to: Unable to upgrade automatically my pluginsI have created a text file named “PHP.ini” in which I wrote:
memory_limit = 64M ;
I uploaded that file in the wp-admin folder, and now it seems to be working fine. I was able to automatically upgrade all of my plugins except GD Star Rating.
Forum: Plugins
In reply to: Unable to upgrade automatically my pluginsThank you MichealH,
But where can I find the PHP.ini and .htaccess files?
If I can’t find them at all, can I just add define(‘WP_MEMORY_LIMIT’, ’64M’); to the wp-config.php file?
Thanks.
Forum: Fixing WordPress
In reply to: Articles showing 404 requested URL was not found when you clickHi Samboll, and thank you for your time.
I went to settings – permalinks, and the set was at:
– Month and name http://www.panoramarc.com/2009/03/sample-post/
So I switched it to default, and the permalinks were working!
But then again I didn’t wanted to stay on default, so I switched it back to Month and name, and it is still working, with my original URLs.thank you very much!
Forum: Fixing WordPress
In reply to: Disable automatic p and br tags in HTML editorI tried all tricks and there is no way that wordpress keeps the
tabs in the programing code. Therefore I had to use something else. I tried tables!Using tables will make you use more programing, unless you use the TinyMCE Advanced plugin, which helps you use tables more easily.
With tables, when I need a single line break, I switch to the next row of the table. If I need a double line break, I leave an empty row in the table (<tr><td></td></tr>) The result, it gives me something like this.
Forum: Fixing WordPress
In reply to: line breaks are deleted??I tried all tricks and there is no way that wordpress keeps the
tabs. Therefore I had to use something else. I tried tables!Using tables will make you use more programing, unless you use the TinyMCE Advanced plugin, which helps you use tables more easily.
With tables, when I need a single line break, I switch to the next row of the table. If I need a double line break, I leave an empty row in the table (<tr><td></td></tr>) The result, it gives me something like this.
Hi Earthoria, I have exactly the same problem as you, exactly the way you described it, and I wonder how were you able to resolve it.
Thank you!
Anto.