iveph
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Update Crashed, now blog is brokenHi, I am having the same problem as juleslov. Actually my two blogs under different domain names in the same hosting server developed this problem. As Peter said, the wordpress just can not see any themes or plugins in the wp-content/themes or wp-content/plugins directory, even though they are there. How does this happen? I have changed the permission for the directories from 755 to 777 then to 755 again with no effect at all?
juleslov, did you manage to solve the problem?
Forum: Fixing WordPress
In reply to: webpage goes blank with theme, plugin function.array-keys problemsThanks. I will give it a go. Now I just found the same problem with my another wordpress blog in the same hosting under different domain names. I suspect this might be related to hosting setting up, but I am not sure. I will try to reinstall as you suggested.
Forum: Themes and Templates
In reply to: Please Help, Theme change has errors……I am experiencing the same problem with the following error messeges on the theme menu of dashboard. My wordpress is version 3.2.1 with default 2011 theme. Did anybody find a solution for the problem?
Warning: array_keys() [function.array-keys]: The first argument should be an array in /wp-includes/theme.php on line 521
Warning: uksort() [function.uksort]: The argument should be an array in /wp-admin/includes/class-wp-themes-list-table.php on line 48
Warning: array_slice() expects parameter 1 to be array, boolean given in /wp-admin/includes/class-wp-themes-list-table.php on line 55
Forum: Fixing WordPress
In reply to: webpage goes blank with theme, plugin function.array-keys problemsThanks for the reply. I removed all the themes apart from the default one. The problem is that wordpress does not see any theme or plugin, therefore it won’t be able display anything at front end.
Forum: Fixing WordPress
In reply to: Index.php not found problem for wordpress in subdirectoryno, trying get access to the subdirectory still gives the error. http://www.pharmatopics.com/wp/index.php shows page not found error, although the index.php file is indeed there.
Forum: Fixing WordPress
In reply to: Index.php not found problem for wordpress in subdirectoryHi, Thanks for you help. I did regenerating the permalinks several times with no effect. The strange thing is that even if I type in http://www.pharmatopics.com/wp/index.php, it shows the not found error. If I type in the name of another file in the same subdirectory, like http://www.pharmatopics.com/wp/readme.html, it displays fine.
Forum: Fixing WordPress
In reply to: Index.php not found problem for wordpress in subdirectoryYes, I did. The .htaccess is like this.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress