Hy,
habe gerade meine erste phpMyFaq-Installation hingelegt - klappte auch gut...aber: Beim Löschen eines Beitrages kommt die Meldung
Notice: Undefined index: submit in c:\inetpub\wwwroot\faq\admin\record.save.php on line 27
Im Script nachgeschaut was Zeile 27 ist: $submit = $_POST["submit"];
Im Bereich der offenen Fragen erscheine die Beiträge übrigens auch nicht ;-(
Kann mir da jemand weiterhelfen?
phpMyFAQ: 1.6.1
PHP: 4.3.6
MySQL: 4.1.15
Server: Win2000 mit IIS 5.0
Beitrag löschen klappt nicht: Fehler in record.save.php ?
Moderator: Thorsten
Re: Beitrag löschen klappt nicht: Fehler in record.save.php
Hi,
Please change that line with this one below:
PS: FYI, read here
unfortunately this is a known bug already fixed in CVS.Medical wrote:Kann mir da jemand weiterhelfen?
phpMyFAQ: 1.6.1
PHP: 4.3.6
MySQL: 4.1.15
Server: Win2000 mit IIS 5.0
Please change that line with this one below:
Code: Select all
$submit = $_REQUEST["submit"];
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
Amazon.co.uk Wishlist
Hi,
and replace it with this one below:
BTW, you could give a chance to the PMF code currently into CVS, using the nightly built snapshot.
Ciao,
Matteo
I miss to give you another fix. Please locate also this line:Medical wrote:Any further idea?
Code: Select all
<input type="hidden" name="language" value="<?php print $_POST["language"]; ?>">
Code: Select all
<input type="hidden" name="language" value="<?php print $_REQUEST["language"]; ?>">
Ciao,
Matteo
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
Amazon.co.uk Wishlist
Hi,
Basically it is our public source repository and there you'll find the whole of the code changes after releasing a version (currently, 1.6.1). Sometimes that code has significant fixes and could be used for solving some blocking issues.
Said this, if the posted changes fix your issue, there is no need of using the PMF code coming from the nightly built CVS snapshot.
FYI, in the 2nd half of June we'll release PMF 1.6.2.
No: the 2 changes above are those we changed as the fix for the delete bug.Medical wrote:changed it. There are some more $POST entries in this script - should all be changed into $_REQUEST ?
It stands for Concurrent Versions SystemMedical wrote:CVS? Whats that?
Basically it is our public source repository and there you'll find the whole of the code changes after releasing a version (currently, 1.6.1). Sometimes that code has significant fixes and could be used for solving some blocking issues.
Said this, if the posted changes fix your issue, there is no need of using the PMF code coming from the nightly built CVS snapshot.
FYI, in the 2nd half of June we'll release PMF 1.6.2.
phpMyFAQ QA / Developer
Amazon.co.uk Wishlist
Amazon.co.uk Wishlist