|
|
| |
Forums ⇒ DragonflyCMS ⇒ Add-Ons & Blocks ⇒ mClip - Movie Module
mClip - Movie ModuleNeed help creating a block or add-on, or you have created or modified a block/add-on that works in Dragonfly CMS and it meets the CPG Security Requirements? Do you have feedback about a specific add-on? Here is the place to post. Read the announcements here first!.
Go to page Previous 1, 2, 3 ... , 9, 10, 11 Next
|
View previous topic :: View next topic |
| Author |
Message |
Heckler Heavy poster


Offline Joined: Apr 22, 2007 Posts: 299 Location: California
|
Posted: Fri Jun 06, 2008 8:29 am Post subject: Re: mClip - Movie Module |
|
This module is awesome, only problem is that it doesn't look good on dark themes, but other than that it's a really nice module
_________________ Phone Rumors | My Solution Manuals | My Online Money Guide | Premium WordPress Themes
Heckler's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux / 1.3.37 (Unix) / 4.1.21-standard / 4.4.6 / 9.2.1
|
|
| Back to top |
|
 |
rlgura 1000+ Posts Club


Offline Joined: Mar 27, 2006 Posts: 1146 Location: Cleveland, OH USA
|
Posted: Fri Jun 06, 2008 10:51 am Post subject: Re: mClip - Movie Module |
|
| Heckler wrote: |
| only problem is that it doesn't look good on dark themes, |
It looks fine on my site (running same theme as yours  ). I'm not running the latest code, so unless Mark changed something in the templates the last couple rounds... What's the problem - I didn't see Movie module on your site...
_________________ Admin - Great Lakes Web Designs
Theme Designer - WebSite Guru Designs
Site Admin - Families with Food Allergies
rlgura's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux 2.6.27-grsec/Apache 2.2.11/MySQL 5.0.67-community-log/PHP 5.2.8/DF 9.2.1
|
|
| Back to top |
|
 |
IgorMM Nice poster


Offline Joined: Dec 14, 2005 Posts: 80 Location: ljubljana, slovenia
|
Posted: Fri Jun 06, 2008 11:24 am Post subject: Re: mClip - Movie Module |
|
hi  the module is the best.
only one problem i have, i get emails with sql errors itk show like this:
| Code:: |
On /index.php?name=Movie&mid=6
While executing query "
SELECT m.*, c.ctitle, c.cimage, t.tname, t.timage, t.tplayer, t.tmovies, t.thtml, t.tdefault
FROM cms_movie_movie AS m
LEFT JOIN cms_movie_cat AS c ON (c.cid=m.cid)
LEFT JOIN cms_movie_type AS t ON (t.tid=m.tid)
WHERE m.mid 6
AND m.cid IN (0,1,2,3,4,5)
AND (m.mtags LIKE '%Jeff%' OR m.mtags LIKE '%Dunham%' OR m.mtags LIKE '%-%' OR m.mtags LIKE '%Achmed's%' OR m.mtags LIKE '%Jingle%' OR m.mtags LIKE '%Bombs%')
AND m.mapprove = 1
ORDER BY m.datetime DESC LIMIT 3"
the following error occured: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's%' OR m.mtags LIKE '%Jingle%' OR m.mtags LIKE '%Bombs%') |
how to fix it?
thx
IgorMM's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux , 2.0 , 5.0.51a , 5.2.6 , 9.1.2.1
|
|
| Back to top |
|
 |
Kendle 500+ Posts Club


Offline Joined: Dec 16, 2004 Posts: 552
|
Posted: Fri Jun 06, 2008 3:45 pm Post subject: Re: mClip - Movie Module |
|
| Heckler wrote: |
This module is awesome, only problem is that it doesn't look good on dark themes, but other than that it's a really nice module  |
There's some additional stuff added in v2.x for the rating script and some other AJAX/javascript stuff. There's a stylesheet in /themes/YOURTHEME/style/Movie you can play with to make it better integrated if you like.
Don't forget also the module is templated so you can play with those to customise the look and feel.
_________________ Gaming League / Cup - www.leaguecms.co.uk :: Other DragonFly modules - www.cmsdreams.co.uk
Kendle's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
|
|
| Back to top |
|
 |
Kendle 500+ Posts Club


Offline Joined: Dec 16, 2004 Posts: 552
|
Posted: Fri Jun 06, 2008 4:03 pm Post subject: Re: mClip - Movie Module |
|
| IgorMM wrote: |
hi the module is the best.
only one problem i have, i get emails with sql errors itk show like this:
| Code:: |
On /index.php?name=Movie&mid=6
While executing query "
SELECT m.*, c.ctitle, c.cimage, t.tname, t.timage, t.tplayer, t.tmovies, t.thtml, t.tdefault
FROM cms_movie_movie AS m
LEFT JOIN cms_movie_cat AS c ON (c.cid=m.cid)
LEFT JOIN cms_movie_type AS t ON (t.tid=m.tid)
WHERE m.mid 6
AND m.cid IN (0,1,2,3,4,5)
AND (m.mtags LIKE '%Jeff%' OR m.mtags LIKE '%Dunham%' OR m.mtags LIKE '%-%' OR m.mtags LIKE '%Achmed's%' OR m.mtags LIKE '%Jingle%' OR m.mtags LIKE '%Bombs%')
AND m.mapprove = 1
ORDER BY m.datetime DESC LIMIT 3"
the following error occured: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's%' OR m.mtags LIKE '%Jingle%' OR m.mtags LIKE '%Bombs%') |
how to fix it?
thx |
I'm assuming that code is the SQL that looks up related movies, however I've just checked on my site and it works fine. The actual SQL statement has an error
WHERE m.mid 6
should be
WHERE m.mid <> 6
I can only suggest re-uploading the module files. As far as I can see the code in v2.1.2 is correct (the specific file is /modules/Movie/includes/movie.inc)
_________________ Gaming League / Cup - www.leaguecms.co.uk :: Other DragonFly modules - www.cmsdreams.co.uk
Kendle's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
|
|
| Back to top |
|
 |
Heckler Heavy poster


Offline Joined: Apr 22, 2007 Posts: 299 Location: California
|
Posted: Fri Jun 06, 2008 6:25 pm Post subject: Re: mClip - Movie Module |
|
| Kendle wrote: |
| Heckler wrote: |
This module is awesome, only problem is that it doesn't look good on dark themes, but other than that it's a really nice module  |
There's some additional stuff added in v2.x for the rating script and some other AJAX/javascript stuff. There's a stylesheet in /themes/YOURTHEME/style/Movie you can play with to make it better integrated if you like.
Don't forget also the module is templated so you can play with those to customise the look and feel. |
Good to know  I just didn't like how the tabs looked, but I can change that now so it's all good.
@ rlgura you can't see it because it's a secret  I can't see it on your site either...
_________________ Phone Rumors | My Solution Manuals | My Online Money Guide | Premium WordPress Themes
Heckler's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux / 1.3.37 (Unix) / 4.1.21-standard / 4.4.6 / 9.2.1
|
|
| Back to top |
|
 |
Kendle 500+ Posts Club


Offline Joined: Dec 16, 2004 Posts: 552
|
Posted: Fri Jun 06, 2008 6:50 pm Post subject: Re: mClip - Movie Module |
|
| IgorMM wrote: |
hi the module is the best.
only one problem i have, i get emails with sql errors itk show like this:
| Code:: |
On /index.php?name=Movie&mid=6
While executing query "
SELECT m.*, c.ctitle, c.cimage, t.tname, t.timage, t.tplayer, t.tmovies, t.thtml, t.tdefault
FROM cms_movie_movie AS m
LEFT JOIN cms_movie_cat AS c ON (c.cid=m.cid)
LEFT JOIN cms_movie_type AS t ON (t.tid=m.tid)
WHERE m.mid 6
AND m.cid IN (0,1,2,3,4,5)
AND (m.mtags LIKE '%Jeff%' OR m.mtags LIKE '%Dunham%' OR m.mtags LIKE '%-%' OR m.mtags LIKE '%Achmed's%' OR m.mtags LIKE '%Jingle%' OR m.mtags LIKE '%Bombs%')
AND m.mapprove = 1
ORDER BY m.datetime DESC LIMIT 3"
the following error occured: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's%' OR m.mtags LIKE '%Jingle%' OR m.mtags LIKE '%Bombs%') |
how to fix it?
thx |
Actually, at 2nd glance there's another error. You have a search tag with a quote in it Achmed's. This needs to be escaped or else it's not valid SQL.
I've uploaded a new package, v2.1.3, please use the new package, it should fix your problem.
www.cmsdreams.co.uk/Do.../id=1.html
_________________ Gaming League / Cup - www.leaguecms.co.uk :: Other DragonFly modules - www.cmsdreams.co.uk
Kendle's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
|
|
| Back to top |
|
 |
Heckler Heavy poster


Offline Joined: Apr 22, 2007 Posts: 299 Location: California
|
Posted: Sat Jun 07, 2008 7:29 am Post subject: Re: mClip - Movie Module |
|
Something I'd love to see added to this module would be categories accessable by only a certain group
_________________ Phone Rumors | My Solution Manuals | My Online Money Guide | Premium WordPress Themes
Heckler's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux / 1.3.37 (Unix) / 4.1.21-standard / 4.4.6 / 9.2.1
|
|
| Back to top |
|
 |
Kendle 500+ Posts Club


Offline Joined: Dec 16, 2004 Posts: 552
|
|
| Back to top |
|
 |
Heckler Heavy poster


Offline Joined: Apr 22, 2007 Posts: 299 Location: California
|
|
| Back to top |
|
 |
Bluefin221 Silver Supporter


Offline Joined: Sep 12, 2005 Posts: 399 Location: Centre of the Earth
|
Posted: Wed Jun 11, 2008 10:43 pm Post subject: Re: mClip - Movie Module |
|
I noticed on the share part (great feature) you have
Facebook
Del.icio.us
Digg
Google
Y! MyWeb
I was wondering whether it was possible that bebo could be added, its hugely popular, I'd say 90% of my site have a bebo account.
_________________ Have a look at my new chat home: www.worldwidechatters.com
Looking for hosting www.caltonhosting.com
Bluefin221's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
|
|
| Back to top |
|
 |
Kendle 500+ Posts Club


Offline Joined: Dec 16, 2004 Posts: 552
|
Posted: Thu Jun 12, 2008 1:07 pm Post subject: Re: mClip - Movie Module |
|
Probably, would you happen to know the URL / syntax to use to share / bookmark something on bebo?
_________________ Gaming League / Cup - www.leaguecms.co.uk :: Other DragonFly modules - www.cmsdreams.co.uk
Kendle's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
|
|
| Back to top |
|
 |
Bluefin221 Silver Supporter


Offline Joined: Sep 12, 2005 Posts: 399 Location: Centre of the Earth
|
Posted: Sun Jun 15, 2008 4:34 pm Post subject: Re: mClip - Movie Module |
|
| Kendle wrote: |
| Probably, would you happen to know the URL / syntax to use to share / bookmark something on bebo? |
Here is the URL for bebo www.bebo.com/
I haven't looked for the syntax been away all weekend and have a seriously bad hangover so not functioning properly.
_________________ Have a look at my new chat home: www.worldwidechatters.com
Looking for hosting www.caltonhosting.com
Bluefin221's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
|
|
| Back to top |
|
 |
layingback Forum Admin


Offline Joined: Apr 19, 2004 Posts: 1032
|
Posted: Sun Jun 15, 2008 6:06 pm Post subject: Re: mClip - Movie Module |
|
Might be easier if you can find an accessible site which has an option to log to bebo. If your vision's not to blurry, mate!
_________________ Pro_News: The complete module for Dragonfly - now available as version 3.3
layingback's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) 2.6 - 3.6 / 1.3.42 - 2.2.12 / 5.0.92 - 5.1.37 - 5.1.54 / 4.4.49 - 5.2.17 - 5.3 / 9.2.1
|
|
| Back to top |
|
 |
IgorMM Nice poster


Offline Joined: Dec 14, 2005 Posts: 80 Location: ljubljana, slovenia
|
Posted: Thu Jun 19, 2008 7:19 pm Post subject: Re: mClip - Movie Module |
|
i have the version 2.1.3 and i have a problem with comments, when you klick submit, the site doesent refresh, and stands still.
IgorMM's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux , 2.0 , 5.0.51a , 5.2.6 , 9.1.2.1
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You cannot download files in this forum
|
| |
 |
 Welcome Anonymous
|
|
|
|