1
krobi
Re: Pd-Downloads 1.2 at Xoops 2.0.16 problem.
  • 2007/7/31 19:23

  • krobi

  • Quite a regular

  • Posts: 290

  • Since: 2003/12/21


hello

1. please try to reinstall pd-download
2. if the error repeats, check you database
3. pls report whats the result.

ps: you will get the fastet support from us on our homepage, maybe the error is known check our homepage www.power-dreams.com
Developer of PD-Modules like PD-Downloads and PD-Links.
Webmaster of Power-Dreams.com



2
krobi
Re: Pd Downloads Catagories not working
  • 2006/11/9 20:25

  • krobi

  • Quite a regular

  • Posts: 290

  • Since: 2003/12/21


the problem was posted many times and the solution also, when you search for form.php bug here or on power-dreams.com you will find the answer.

xoops 2.0.15 have a bug and the core team dont want to fix it, so you all users have to fix it on your own - i'am sorry, its no problem from pd-downloads because the code is clear and without problems.

for a fix for that problem please see -> this <- forum thread.

@deren: pls see -> this <- forum thread for your problem and try posting 17 and pls give me feedback on this problem.
Developer of PD-Modules like PD-Downloads and PD-Links.
Webmaster of Power-Dreams.com



3
krobi
Re: PD download module problem
  • 2006/10/30 22:58

  • krobi

  • Quite a regular

  • Posts: 290

  • Since: 2003/12/21


attention pd-download and wf-download (especially versions above 2.x) have a different sql, so you cant simple copy the changes from pd-download to wf-download.

restore the default sql syntax of wf-download and try simple let the cid thing away.

when you compare the pd-download sql syntax from posting #17 with the default sql syntax you will that i have simple deleted the cid degleration because it have auto increment.

and i hope that is the problem of MySQL 5, but i'am not sure because i cant reproduce the problem - do you have the same problem with pd-downloads 1.2? could try the changes from posting #17 in pd-downloads 1.2 and report me what happend.
Developer of PD-Modules like PD-Downloads and PD-Links.
Webmaster of Power-Dreams.com



4
krobi
Re: PD download module problem
  • 2006/10/10 14:31

  • krobi

  • Quite a regular

  • Posts: 290

  • Since: 2003/12/21


have you done the changes i mention in posting #17?

it dont seems so, regardins the sql error message.
pls try the changes.
Developer of PD-Modules like PD-Downloads and PD-Links.
Webmaster of Power-Dreams.com



5
krobi
Re: CBB 3.06 doesn't work on my 2.0.15 based site.
  • 2006/10/9 23:00

  • krobi

  • Quite a regular

  • Posts: 290

  • Since: 2003/12/21


pls turn on the php debug mode from xoops, then you normally get an error message that say's more than a blank screen.
Developer of PD-Modules like PD-Downloads and PD-Links.
Webmaster of Power-Dreams.com



6
krobi
Re: PD download module problem
  • 2006/10/9 17:19

  • krobi

  • Quite a regular

  • Posts: 290

  • Since: 2003/12/21


have you tried it with another browser?
like firefox or opera?

pls give it a try, when the internet explorer crashes it cant be a problem of the module - so its very important to know if the sql querie works.

the problem is on my MySQL 5 server every solution i gave you works - so i hope you understand why this is so important to test.
Developer of PD-Modules like PD-Downloads and PD-Links.
Webmaster of Power-Dreams.com



7
krobi
Re: PD download module problem
  • 2006/10/6 22:18

  • krobi

  • Quite a regular

  • Posts: 290

  • Since: 2003/12/21


any news?
Developer of PD-Modules like PD-Downloads and PD-Links.
Webmaster of Power-Dreams.com



8
krobi
Re: PD download module problem
  • 2006/10/5 14:28

  • krobi

  • Quite a regular

  • Posts: 290

  • Since: 2003/12/21


could you pls try to change line 268 in the category file - you know

to this
Quote:
$sql = "INSERT INTO {$xoopsDB -> prefix("PDdownloads{$mydirnumber}_cat")}
(pid, title, imgurl, description, nohtml, nosmiley,
noxcodes, noimages, nobreak, weight, spotlighttop, spotlighthis) VALUES
($pid, '$title', '$imgurl', '$description', $nohtml, $nosmiley,
$noxcode', $noimages, $nobreak, $weight, $spotlighttop, $spotlighthis)";
Developer of PD-Modules like PD-Downloads and PD-Links.
Webmaster of Power-Dreams.com



9
krobi
Re: PD download module problem
  • 2006/10/4 15:26

  • krobi

  • Quite a regular

  • Posts: 290

  • Since: 2003/12/21


do you have a similar problem with other modules for example when you add a calender entry - does it work?

edit: pls try this
go to pd-downloads folder/admin/category.php

go to line 268, you will find this
Quote:
$sql = "INSERT INTO " . $xoopsDB -> prefix("PDdownloads{$mydirnumber}_cat") . "
(cid, pid, title, imgurl, description, nohtml, nosmiley,
noxcodes, noimages, nobreak, weight, spotlighttop, spotlighthis) VALUES
($cid, $pid, '$title', '$imgurl', '$description', '$nohtml', '$nosmiley',
'$noxcodes', '$noimages', '$nobreak', '$weight', $spotlighttop, $spotlighthis)";


change it to this
Quote:
$sql = "INSERT INTO " . $xoopsDB -> prefix("PDdownloads{$mydirnumber}_cat") . "
(pid, title, imgurl, description, nohtml, nosmiley,
noxcodes, noimages, nobreak, weight, spotlighttop, spotlighthis) VALUES
($pid, '$title', '$imgurl', '$description', '$nohtml', '$nosmiley',
'$noxcodes', '$noimages', '$nobreak', '$weight', $spotlighttop, $spotlighthis)";
Developer of PD-Modules like PD-Downloads and PD-Links.
Webmaster of Power-Dreams.com



10
krobi
Re: PD download module problem
  • 2006/10/4 13:11

  • krobi

  • Quite a regular

  • Posts: 290

  • Since: 2003/12/21


could you pls tell me what MySQL version you are running or is running on your webserver - another person reported that problem a long time ago but we where not able to fix this.

first we thought that is it a MySQL 5 bug, but we are running here a MySQL 5 server and the module works without problems.

but maybe its a problem a certain MySQL version, do you have that problem with other modules also? what MySQL version do you have exactly? i also have 5 but 5.0.21.
Developer of PD-Modules like PD-Downloads and PD-Links.
Webmaster of Power-Dreams.com




TopTop
(1) 2 3 4 ... 16 »



Login

Who's Online

166 user(s) are online (105 user(s) are browsing Support Forums)


Members: 0


Guests: 166


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Mar 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits