Search found 30 matches

by scraper
Mon 9. Jan 2006, 08:34
Forum: hacks & enhancements
Topic: Login Contentpart
Replies: 84
Views: 51291

Hi Markus,

Thanks for the login contentpart. The faq mod? YES PLEASE. 8)

Regards
by scraper
Mon 9. Jan 2006, 08:28
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

The mkdir fails because the folder already exists. Before it creates the folder it checks the album table to know which ID to give to the new album. I presume that your table is empty (as you had errors with the insert query on this table) and that's the reason why it tries to recreate album 1 again ...
by scraper
Fri 6. Jan 2006, 15:48
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

Hi LPWV,

I wasn't able to check the forum for a while, due to the holidays and my daughter that needed to be hospitalized. All is well again so... 8)

I checked the code and (again) found a bug :oops:

If you open the file add.album.php in the inc_act folder where you stored the mygallery files ...
by scraper
Fri 6. Jan 2006, 15:27
Forum: hacks & enhancements Support
Topic: myGallery MOD Problem
Replies: 3
Views: 4116

Hi Rene,

You have an article with {MYGAL}
-> this will list all the albums you have created.

Next step is to create a category with an alias gallery. Create in this category an article with the code {MYAL}

->
the link ../index.php?gallery&album=2 will then point to your new created article and if ...
by scraper
Wed 14. Dec 2005, 08:39
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

Hi Prisma and Tmerz,

Sorry that you had to wait so lang for a respons.

@Prisma: seems that you don't have sufficient permissions on the database to create the tables.

@Tmerz: When SAFE MODE is on, you can't create folders through the script. I thought of a solution for this, but haven't had the ...
by scraper
Tue 29. Nov 2005, 21:46
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

Hey Mac,

If I understand you correctly, you clicked the "install Gallery mod" button and you received the error.

These are the queries that are executed when you click on the install button:

$create_albums_sql = "
CREATE TABLE `" . $GLOBALS['tables']['gal_albums'] . "` (
`id` int(11) unsigned ...
by scraper
Mon 28. Nov 2005, 15:15
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

Hey Mac,

I used the callendar mod as blueprint for the gallery mod, from there my question.
We'll wait till you have everything up and running again?

To answer your question, I always install the packages seperately.
For me that's a sport :lol:

Thanks everyone for your feedback about this ...
by scraper
Mon 28. Nov 2005, 14:28
Forum: phpwcms Support English
Topic: rendering of modules with phpwcms v1.2.6-DEV 19.11.2005
Replies: 0
Views: 1038

rendering of modules with phpwcms v1.2.6-DEV 19.11.2005

Hi,

I'm posting the question here as I think it is related with a newer version of phpWCMS.

Can someone have a look at the problem reported by macmukka with the mygallery mod?

As he's using a more recent version of about everything than I'm using, I need some serious help in pinpointing the ...
by scraper
Mon 28. Nov 2005, 14:11
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

:shock:

Hi Mac,

Never saw this before. Looks to me as if he doesn't render the code.
Do you have other modules installed (like the calendar module)? Do they work correctly?

I'm not using PHP5 and mysql5 yet (boy you're up to date).
:lol:

I'll do some tests...
Anyone else an idea :?:
by scraper
Wed 23. Nov 2005, 16:53
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

Hey pSouper,

Thanks for your feedback.

I thought about the function_exist, but never came around to it. :oops:

With regards to the insert queries, at first sight you found the only one. just checked the main.classes.php file and the insert and update queries are OK there.
Thanks man for pointing ...
by scraper
Thu 17. Nov 2005, 00:39
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

Hey Lumimies,

While I was testing to resolv the errors, I stumble uppon a few bugs.
I modified a lot of code on different pages so it would be advisable to download the zip file again (drop the tables for the gallery as well).

http://www.multisource.be/docs/gallery_mod_v01.zip

The bug fixes ...
by scraper
Wed 16. Nov 2005, 20:56
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

Lumimies,

Strange!
I've done a fresh install of the gallery (I've modified the config file and updated the zip file). No problems for installation :wink:

For the RTs, look at the screenshot:
http://www.multisource.be/docs/screen01.gif

Very simple setup, the gallery article content is {MYGAL ...
by scraper
Wed 16. Nov 2005, 20:21
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

Hi Lumimies,

It seems that nothing is working for you :oops:
I'm happy that the backend is working for you :P

The RT are tricky as you have to create for each RT a category with the respective alias

MYGAL -> category alias is free to chose
MYAL -> category alias must be mygal
MYPIC -> category ...
by scraper
Wed 16. Nov 2005, 16:52
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

Hi Lumimies,

I'll check this later this evening. I've made some changes along the way and I think I forgot to update the config file for the installation.

You can add the field manually in the table, type is text.
The default entry for imagedir is images/ (with the / )
by scraper
Wed 16. Nov 2005, 14:21
Forum: hacks & enhancements
Topic: mygallery mod
Replies: 85
Views: 96199

Hi Lumimies,

The error message is with the fmod function. Open the file
mygallery/inc_lib/main.functions.php
In the beginning of the file you will see the block

function fmod($x,$y){
$i = floor($x/$y);
return $x - $i*$y;
}
Just remove this code or comment it. this will solve the error.

This ...