dogpa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: all url’s not workingHere’s an error log file from my server:
Fatal error: Call to undefined function: get_header() in /export/web20/omega/untit001/www/wp-content/themes/untitled-documen/index.php on line 1
PHP Fatal error: Call to undefined function: get_header() in /export/web20/omega/untit001/www/wp-content/themes/default/index.php on line 1
PHP Warning: main(ABSPATHwp-includes/wp-db.php): failed to open stream: No such file or directory in /export/web20/omega/untit001/www/wp-settings.php on line 59
PHP Fatal error: main(): Failed opening required ‘ABSPATHwp-includes/wp-db.php’ (include_path=’.:/usr/local/lib/php’) in /export/web20/omega/untit001/www/wp-settings.php on line 59
PHP Warning: main(ABSPATHwp-includes/wp-db.php): failed to open stream: No such file or directory in /export/web20/omega/untit001/www/wp-settings.php on line 59
PHP Fatal error: main(): Failed opening required ‘ABSPATHwp-includes/wp-db.php’ (include_path=’.:/usr/local/lib/php’) in /export/web20/omega/untit001/www/wp-settings.php on line 59
PHP Warning: Invalid argument supplied for foreach() in /export/web20/omega/untit001/www/wp-admin/templates.php on line 96
PHP Warning: fread(): Length parameter must be greater than 0. in /export/web20/omega/untit001/www/wp-admin/templates.php on line 73
PHP Warning: Invalid argument supplied for foreach() in /export/web20/omega/untit001/www/wp-admin/templates.php on line 96
PHPForum: Fixing WordPress
In reply to: all url’s not workingI also have this error listed under “Recent” in manage/files.
Warning: Invalid argument supplied for foreach() in /export/web20/omega/untit001/www/wp-admin/templates.php on line 96
The edit function doesn’t work (set to 666…still no good)
so I added the above WordPress text to my original htaccess file from another post on this forum. I don’t know if it’s right or not, but it is not working, all problems are as stated in beggining of this topic. Please help!Forum: Fixing WordPress
In reply to: all url’s not workingMy url’s are written correctly. That’s not the problem.
my .htaccess is:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName “untitled-document.org”
AuthUserFile /export/web20/omega/untit001/www/_vti_pvt/service.pwd
AuthGroupFile /export/web20/omega/untit001/www/_vti_pvt/service.grp# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule># END WordPress