emirhan
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Upgraded to 2.5: Can’t loginThe solution is here:
https://www.ads-software.com/support/topic/165568?replies=10
Forum: Installing WordPress
In reply to: Upgrading to 2.5 is a disasterFirst of all thanks to everyone. I have 3 other blogs and the upgrade to WordPress 2.5 went smoothly.
I had this problem with the last upgrades. I went into my old emails and found a support answer from my webhosting provider. They found the answer so we tried this solution to the current upgrade problem and it worked like magic.
The solution is located here:
https://www.ads-software.com/support/topic/148108
I put the one line of code in the widgets.php file on the line number that was the problem (for me it was line 60 – the old code was
$sidebar = array_merge($defaults, $args);The proper code should be:
$sidebar = array_merge($defaults, (array)$args);Hope this helps someone else.
Thanks
Forum: Installing WordPress
In reply to: Upgrading to 2.5 is a disasterI deleted all the plugins which I had that did not come with WordPress and then uploaded WordPress 2.5 again.
Nothing has changed. There is the following message on my blog:
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home/verotaro/public_html/motorparasi/wp-includes/widgets.php on line 60
I don’t know what to do.
Forum: Installing WordPress
In reply to: Upgrading to 2.5 is a disasterI will try to do it what you said,
and thank you for your help.Forum: Installing WordPress
In reply to: Why we can’t get any help here?I know that the people are not paid to assist the others on this platform. Which I really appreciate that who takes time to answer other people’s problems here.
Also, exactly I am talking about that thread. I am not complaining just I saw over a hundred message on that thread and wanted to express my opinion only.
That’s all.
Forum: Installing WordPress
In reply to: Problem with widgets.php in Upgrading from WP 2.1 to WP 2.5I am having the same problem I think – please see my posting titled Upgrading to 2.5 is a Disaster (https://www.ads-software.com/support/forum/2)
I have checked with my hosting company but they say it’s an issue with WordPress that only WordPress can solve because it’s the new 2.5 WordPress and they don’t have any information.
I can’t login even to change anything.
We tried going back to WordPress 2.3, but it doesn’t help.
Please help us!
Forum: Fixing WordPress
In reply to: Upgrade to 2.3.2 Problem – Please helpThank you for answering, I’ll change my hosting company in the near future. As you said it is better for me to upload 2.3.1 files to run my blog again.
Thanks..Forum: Fixing WordPress
In reply to: Upgrade to 2.3.2 Problem – Please helpAre there any other suggestions on how to upgrade to 2.3.2 ? How can I run the upgrade page?
Thanks…Forum: Fixing WordPress
In reply to: Upgrade to 2.3.2 Problem – Please helpI can’t see the .htaccess file – where would it be located?
Forum: Fixing WordPress
In reply to: Upgrade to 2.3.2 Problem – Please helpI’m sorry, I tried it again using Filezilla to upload. The site is still not showing up. Do you think it has anything to do with the taxanomy code? I did not replace the code that my webhoster provided. They said the the code is not compatible with PHP 5. I am not a programmer so replacing it is a problem for me. My blog has been down since yesterday.
Forum: Fixing WordPress
In reply to: Upgrade to 2.3.2 Problem – Please helpThank you. I am just going to try this.
Forum: Installing WordPress
In reply to: Upgrading to 2.3.1Thought I should post this code which solved the problem:
The webhosting company said:
it seems is due to the code is not compatible with PHP 5. Below is the code we changed for your reference, in case you need to re-upload the files and may need to modified it. Please try the installation and see it will work for you now.
Orgaina taxonomy.php line 11 ~ 13
$wp_taxonomies = array();
$wp_taxonomies[‘category’] = (object) array(‘name’ => ‘category’, ‘object_type’ => ‘post’, ‘hierarchical’ => true, ‘update_count_callback’ => ‘_update_post_term_count’);
$wp_taxonomies[‘post_tag’] = (object) array(‘name’ => ‘post_tag’, ‘object_type’ => ‘post’, ‘hierarchical’ => false, ‘update_count_callback’ => ‘_update_post_term_count’);
$wp_taxonomies[‘link_category’] = (object) array(‘name’ => ‘link_category’, ‘object_type’ => ‘link’, ‘hierarchical’ => false);Modified taxonomy.php line 11 ~ 13
$wp_taxonomies = array();
$wp_taxonomies[‘category’] = array(‘name’ => ‘category’, ‘object_type’ => ‘post’, ‘hierarchical’ => true, ‘update_count_callback’ => ‘_update_post_term_count’);
$wp_taxonomies[‘post_tag’] = array(‘name’ => ‘post_tag’, ‘object_type’ => ‘post’, ‘hierarchical’ => false, ‘update_count_callback’ => ‘_update_post_term_count’);
$wp_taxonomies[‘link_category’] = array(‘name’ => ‘link_category’, ‘object_type’ => ‘link’, ‘hierarchical’ => false);Forum: Installing WordPress
In reply to: Upgrading to 2.3.1yes
Forum: Installing WordPress
In reply to: Upgrading to 2.3.1I just sent it.
Forum: Installing WordPress
In reply to: Upgrading to 2.3.1I did the show hidden files. I don’t see .htaccess in the root.