phpmyfaq 160
Moderator: Thorsten
now .. what is this
when I run the local phpmyfaq from Firefox
adress http://localhost/faq16/index.php or http://localhost/10.0.0.3/index.php 'Ask Questions' And Open questions' point to :
http://faq16/index.php?action=ask
http://faq16/index.php?action=open
(the are valid links !!!)
similar from the other links in menu!
I did not test from other hosts.
what happend to 'localhost' and '10.0.0.3'? Does not happen with Opera and IE will NEVER EVER run on any of my computers!
adress http://localhost/faq16/index.php or http://localhost/10.0.0.3/index.php 'Ask Questions' And Open questions' point to :
http://faq16/index.php?action=ask
http://faq16/index.php?action=open
(the are valid links !!!)
similar from the other links in menu!
I did not test from other hosts.
what happend to 'localhost' and '10.0.0.3'? Does not happen with Opera and IE will NEVER EVER run on any of my computers!
Re: Beta: 1) Unable to submit data
Hi jazcyk,jazcyk wrote:1) I still cannot
* Ask question
* Comment
* Add content
.. as a user. It displays "required are your namen, email adress ..." etc. I did provide all this. Also Typed the Captcha. No change as compared to last months alpha, where I reported th same thing. Did I miss something?
these 3 features are regularly running on my PMF 1.6.0 beta fresh installation though I agree with you that in PMF 1.6.0 alpha captcha support was broken and causing the same issue on "Ask question".
Because of you fall into the issue whenever you are requested to provide an email address I fear you are providing a wrong one for PMF email validation. E.g.: sometimes I'm used to write a local account in my test machine, <account>@localhost, and this is not a valid email address for PMF email validation. Can you post the syntax of the email address submitted?
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
Amazon.co.uk Wishlist
Re: Beta: 2) Issue on stat color
Hi jazcyk,jazcyk wrote:2) Coloring of statistics broken in Opera and firefox
I'm not sure to have correclty understood your issue 'cause the stats bars are simple images built at runtime. Can you test these raw urls below and give us a feedback about the result?
Code: Select all
1. http://<PMF_Hostname>/<path_TO_PMF>/admin/stat.bar.php?num=1.00. Expected: Red
2. http://<PMF_Hostname>/<path_TO_PMF>/admin/stat.bar.php?num=2.00. Expected: Grey
3. http://<PMF_Hostname>/<path_TO_PMF>/admin/stat.bar.php?num=3.00. Expected: Grey
4. http://<PMF_Hostname>/<path_TO_PMF>/admin/stat.bar.php?num=4.00. Expected: Green
5. http://<PMF_Hostname>/<path_TO_PMF>/admin/stat.bar.php?num=5.00. Expected: Green
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
Amazon.co.uk Wishlist
Re: Beta ...
Hi jazcyk,jazcyk wrote:BTW: the info about database client version displayed by phpmyfaq .. where does it get that from? I have installed this beta on mySQL 5.0.19, but it displays client version 5.1.7 beta. The php_mysql connector is the one for mySQL 5.0.18 distributed by MySQL - not the one distributed by php.net. But I have had phpmyfaq 1.5.7 installed on MySQL 5.1.7 previously. So it should display client version 5.0.18 I guess! (with the php_mysql php.net it should display something like 4.1.10).
those info are retrieved using the PMF db class:
Code: Select all
db::client_version()
db::server_version()
Can you post the value of your current
Code: Select all
$DB["type"]
Code: Select all
[PATH_TO_PMFINSTALL]/inc/data.php
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
Amazon.co.uk Wishlist
Hi,
the database information from the admin backend is taken from the functions mysql_server_version() and mysql_client_version(). It should be the same as they are displayed in a phpinfo() page.
The captcha support is working here for me. Have you a fresh install or an updated version? The captcha code changes on my systems with every reload.
The colors of the statistics are not broken for me and I touched no code there in 1.6.
You don't see the bad word blocker. The "bad words" are in the file inc/blockedwords.txt. If you use a word from this file, you'll can't add a record, ask a question or add a comment.
I cannot reproduce your problems with the links. I didn't changed there something between 1.5.x and 1.6.
bye
Thorsten
the database information from the admin backend is taken from the functions mysql_server_version() and mysql_client_version(). It should be the same as they are displayed in a phpinfo() page.
The captcha support is working here for me. Have you a fresh install or an updated version? The captcha code changes on my systems with every reload.
The colors of the statistics are not broken for me and I touched no code there in 1.6.
You don't see the bad word blocker. The "bad words" are in the file inc/blockedwords.txt. If you use a word from this file, you'll can't add a record, ask a question or add a comment.
I cannot reproduce your problems with the links. I didn't changed there something between 1.5.x and 1.6.
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Re: and ...
Currently it checks for the content submitted through a public PMF form such as "Ask question", usingjazcyk wrote:where is that 'Bad Word Blocker' ???
I still can't find it!
Code: Select all
[PATH_TO_PMFINSTALL]/inc/blockedwords.txt
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
Amazon.co.uk Wishlist
answer ...
fresh or updated ...
half/half I would say
I unzipped the download, renamed it to /faq16 and placed the folder in the webroot. Next took my old config.php and data.php from webroot/faq157 folder. Executed the update script no errors reported.
So code is fresh. Database is old - but updated by the script.
I cannot either reproduce the issue with links now. Firefox has been restarted - that is the only thing ???
But captchas allways display 'follow the white rabbit' and any attempt to enter user data returns "You must ..." etc. and nothing is inserted.
I DO NOT have php_mod_rewrite enabled on my local. Did you try without that?
You are right. php_info() also says client 5.1.7. So that must be what the client .dll from MySQL AB says.
half/half I would say
I unzipped the download, renamed it to /faq16 and placed the folder in the webroot. Next took my old config.php and data.php from webroot/faq157 folder. Executed the update script no errors reported.
So code is fresh. Database is old - but updated by the script.
I cannot either reproduce the issue with links now. Firefox has been restarted - that is the only thing ???
But captchas allways display 'follow the white rabbit' and any attempt to enter user data returns "You must ..." etc. and nothing is inserted.
I DO NOT have php_mod_rewrite enabled on my local. Did you try without that?
You are right. php_info() also says client 5.1.7. So that must be what the client .dll from MySQL AB says.
Re: answer ...
Hi,
Which version of PHP and which OS do you use?
bye
Thorsten
what happens if you call the captcha image directly: http://localhost/path/to/your/faq/index ... dd&gen=imgjazcyk wrote:But captchas allways display 'follow the white rabbit' and any attempt to enter user data returns "You must ..." etc. and nothing is inserted.
Which version of PHP and which OS do you use?
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
what happens.
a blank page is returned then.
does it depend on certain php modules?
My local PHP configuration is rather 'minimal' ?
does it depend on certain php modules?
My local PHP configuration is rather 'minimal' ?
Hi,
it needs the GD library. Can you post your phpinfo() here? Can you post your error configuration in your php.ini file here, too.
bye
Thorsten
it needs the GD library. Can you post your phpinfo() here? Can you post your error configuration in your php.ini file here, too.
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Hi,
okay, then you don't have the GD library enabled and the captcha and the statistic bars can't work!
bye
Thorsten
okay, then you don't have the GD library enabled and the captcha and the statistic bars can't work!
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist