pmatos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Updating works but then it tried to re-upgradeThanks esmi for checking it out. Actually, I restarted apache and the message offering the re-update disappeared. Very strange.
Forum: Fixing WordPress
In reply to: Page with recent postsHow will the page contents affect the showing of the posts or basically the page contents are ignored and it will act just as a placeholder for the posts page link?
Forum: Fixing WordPress
In reply to: Is it possible server doesn’t allow writing?Thanks all, it’s working using Otto42 suggestion. 🙂
Forum: Fixing WordPress
In reply to: Is it possible server doesn’t allow writing?Even with wp-content as 777 I can’t get it to work. Same error message, folder 2008 gets created but then it can’t create 01, probably because of 2008 permissions:
$ ls -lad 2008 drwxrwxrwx 2 apache 48 2 Jan 7 16:25 2008I would guess apache is the username of the server that created the folder and 48 is some random group. However, it is set 777. How come it can’t create directory 01?!?
Forum: Fixing WordPress
In reply to: API Key insertion for Stats Plugin generates errorThen, I guess, there’s no workaround for this… 🙁
Forum: Fixing WordPress
In reply to: Checking email address in comments (wordpress.com)Sorry, didn’t know about those forums. Thank you!
Forum: Fixing WordPress
In reply to: Stats from wordpress.com in custom blogOK, thank you.
Forum: Plugins
In reply to: changing upload url, now not uploadingAny luck with 2.1.2?
Forum: Fixing WordPress
In reply to: Change upload directory to outside the install directory?Having the same problem. Is there a way out of this?
Forum: Fixing WordPress
In reply to: How to add a html snippetI just pasted the code but things like ” show up with \” in the final code.
Forum: Fixing WordPress
In reply to: No files, only DB dataWorking now…forgot to set the tables prefix.
Forum: Fixing WordPress
In reply to: No files, only DB dataI tried that just right now but I get an error:
“Warning: Invalid argument supplied for foreach() in /home/pocm/public_html/minority/wp-admin/upgrade-functions.php on line 30
Warning: Invalid argument supplied for foreach() in /home/pocm/public_html/minority/wp-admin/upgrade-functions.php on line 88
Warning: Invalid argument supplied for foreach() in /home/pocm/public_html/minority/wp-admin/upgrade-functions.php on line 96
Step 1There’s actually only one step. So if you see this, you’re done. Have fun!”
And everything stays the same. Going to my blog base url shows nothing. 🙁 (only the first install screen)
Forum: Installing WordPress
In reply to: Error in WordPress 1.5Were you able to solve this issue?
I’m having a similar problem…Forum: Installing WordPress
In reply to: Can’t access database… but Database is ok.Forgot to refer that I also have:
define (‘WPLANG’, ”);
i.e. WPLANG is empty. Is there a problem with it?Forum: Installing WordPress
In reply to: Can’t access database… but Database is ok.It seems everything is ok.
Check the following interaction:
$ mysql -h sat -u pocm -p
Enter password: **********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 39 to server version: 4.0.15-standardType ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
mysql> USE pocm;
Database changed
mysql> SHOW TABLES;
Empty set (0.00 sec)mysql> CREATE TABLE test ( ID int(11) NOT NULL auto_increment, PRIMARY KEY (ID)) TYPE=MyISAM;
Query OK, 0 rows affected (0.02 sec)mysql> SHOW TABLES;
+—————-+
| Tables_in_pocm |
+—————-+
| test |
+—————-+1 row in set (0.00 sec)
So, it seems I do have permissions. Why is the error? Anyway to debug the info sent to the server by wordpress?