KTML for PHP Forum :: Problem with using images in KTML 4
This thread was displayed: 0 times
Starting with 17th May 2007, Adobe Systems will stop offering support for any version of the discontinued InterAKT products. As a result, we will not answer to new support incidents starting with May 17th, 2007. Pending support incidents will still be followed in order to be closed. The product forums will remain open and be transformed in user-to-user forums. The general forums will be made read-only and not allow new posts or comments.
For more information about the affected products visit: www.interaktonline.com/Support/
William Gibson
05-04-2007 14:09:21 GMT +2
|
The post variable that previously contained the text is now empty???
Contents of $_POST when no image included...
array(4) {
["Submit"]=>
string(10) "Go for it!"
["title"]=>
string(29) "Test WYSIWYG Files and Images"
["text"]=>
string(21) "
Some test text
"
["category_id_1"]=>
string(1) "3"
}
Contents of $_POST when image included...
array(6) {
["Submit"]=>
string(10) "Go for it!"
["title"]=>
string(29) "Test WYSIWYG Files and Images"
["text"]=>
string(0) ""
["Properties_img_id_text"]=>
string(0) ""
["select"]=>
string(0) ""
["category_id_1"]=>
string(1) "3"
}
My question is where has the contents of the post variable "text" gone?
|
|
|
Razvan Racasanu[InterAKT]
05-09-2007 14:16:45 GMT +2
|
Hello,
Can you post in a private reply FTP connection details and the URL of the page so we can try and find the problem?
Regards,
Razvan RACASANU
|
|
|
Razvan Racasanu[InterAKT]
05-18-2007 11:46:37 GMT +2
|
Hello,
The page where you have the KTML control is included from another page (zz_cp_development_form.php).
If you put a var_dump($_POST) in the main file (zz_cp_development_form.php) you will see that even if you have an image, the post is correct. Somehow, before the page with the KTML control is included, the POST is gone, but this is done from your own code, as KTML submits the content correctly.
Regards,
Razvan RACASANU
|
|
|
William Gibson
05-18-2007 13:35:51 GMT +2
|
Ah great. I should be able to fix it then.
Most sad that KTML has been discontinued by Adobe. Will someone else be taking it on?
|
|
|
William Gibson
05-18-2007 14:09:31 GMT +2
|
Actually I didn't get any joy from that, but I did notice that when I change dthe variable from 'text' to text2' it started working???
|
|
|