This is getting every frustrating. Now I'm back to getting the same error message again. 'It doesn't look like you have installed WP yet. Try running install.php'
Printable View
This is getting every frustrating. Now I'm back to getting the same error message again. 'It doesn't look like you have installed WP yet. Try running install.php'
Now I'm back to having it working.:clap:
Now I'm having different probs :frusty:
When I try to open the admin panel, try to open the wp-login.php page, or try to open the wp-register.php page I receive the following message 'Fatal error: Call to undefined function: mb_language() in /home/content/w/h/a/whatever/html/wp-config.php on line 2'
This is in referecne to line 2 'mb_language("English");'
Line 3 is 'mb_internal_encoding("EUC-JP");'
Do I need to make some additional changes concering the language elsewhere in this mod?
I found the answer in the thread. I was using the wp-jp.zip version. I commented out the language lines and all is well. :oops:
I am still having problems with this module. I have it installed directly into my root as directed and my links are still directing back to my main page. I am doing something wrong, but don't know what. Am I supposed to upload the sample folders? Am I missing something or is the only place wp-include/template-loader.php is found is in the sample folders? Any help or ideas is greatly appreciated, I've spent much too long on this!
The site is down. :-(
Anyone know why the site is down?
Am assuming you mean site that houses WordPress Module download.
Accessed 1 minute ago at
http://www.s-page.net/products/62.html
Hello everybody .
I have a problem with the uncompatibility between Wordpress_zen v1.2 and latest google froogle feeder. Anyone has ever such problem yet.
I test it both on my pc and host sever.. It do have such problem.
If you have zen_worldpress on your zencart .
You can not enable the google feeder to work..
Please anyone has solve the problem ?
Thanks for any reply.
Just find out which file in zen_wordpress has conflicted with google foogle feeder.
zen_root\includes\extra_configures\wordpress-config.php
if(isset($_GET['feed'])){
wp();
gzip_compression();
// require_once('./wordpress/wp-includes/template-loader.php');
require_once('./wp-includes/template-loader.php');
exit();
}
The function code isset($_GET['feed']) do conflit with google froogle. Since there is the same function Line in goolgefroogle.php in zencart root directory!
I know little php , My way to get the worked together is to delete the code
if(isset($_GET['feed'])){
wp();
gzip_compression();
// require_once('./wordpress/wp-includes/template-loader.php');
require_once('./wp-includes/template-loader.php');
exit();
}
}
in wordpress-config.php.
The wordpress still works fine. But i am not sure there will be any hidden trouble in futurn.
DOes any body have other options to change the code ?