21
xsell
Re: For x-movie users and coders
  • 2009/5/6 20:22

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


Hey Optikool , there one thing i would like to know how to do it , when u open the video page i want the comment box to display without having to click Comment ..
do u know how to do it , i saw a website done it and has another cool stuff that there on the video page there show also releated video or other video on the right of the video page ..

but i need to know just how to make the comment thing and maybe u can think about the related video future to be added

22
optikool
Re: For x-movie users and coders
  • 2009/5/6 22:20

  • optikool

  • Not too shy to talk

  • Posts: 154

  • Since: 2007/3/26


xsell - That comment comes from XOOPS core. It's probably an option that you can set for comments and who is allow to post and who to read.

wcrwcr - I just installed ffmpeg on my server. I will see about integrating this feature into x_movie. But in order to use it your server must have ffmpeg installed. I will put in code to check for this also.

23
optikool
Re: For x-movie users and coders
  • 2009/5/19 18:45

  • optikool

  • Not too shy to talk

  • Posts: 154

  • Since: 2007/3/26


xsell - an update on x-movie. I'm almost finished with updating the module. While testing last night I found out the RSS feed was not working so I'm trying to figure out why. Also as an after thought I decided to add to the import/export tool the ability to import and export the categories. This will make it easier to import movies to the correct category. Importing and Exporting videos is working very nicely and when tested with 120 movies worked very well and quick.

wcrwcr - ffmpeg is also working on movies that are local. This includes urls and uploaded movies. You still need to have ffmpeg and ffmpeg-php installed and enabled for this to work. The module will let you know if you don't. Also It wont grab frames from external movies. But most external movies already have thumbnails, or should, and in FF it's simple to just right click the image and choose "Copy Image Location" then paste it as a URL. X Movie will copy this image locally as long as the directory it's copying to is writable.

Unfortunately there's some development work I need to do for my job so working on this modules is taking a little more time then I thought. But it should be ready by the end of the week.

Optikool

24
wcrwcr
Re: For x-movie users and coders
  • 2009/5/19 20:24

  • wcrwcr

  • Home away from home

  • Posts: 1114

  • Since: 2003/12/12


Hi

GReat news optikool
i´ll be around

Thank you

25
optikool
Re: For x-movie users and coders
  • 2009/5/20 8:28

  • optikool

  • Not too shy to talk

  • Posts: 154

  • Since: 2007/3/26


I just uploaded the latest version of x-movie and I think I finally got all the problems I found resolved. If you find any issues let me know. You can download the module here...

http://www.optikool.com/modules/mydownloads/singlefile.php?cid=2&lid=4

optikool

26
wcrwcr
Re: For x-movie users and coders
  • 2009/5/20 11:43

  • wcrwcr

  • Home away from home

  • Posts: 1114

  • Since: 2003/12/12


Thank You so much for continuing the development of that great module.

BTW> Nice site you have. I liked very much your theme

27
onasre
Re: For x-movie users and coders
  • 2009/5/21 5:29

  • onasre

  • Not too shy to talk

  • Posts: 150

  • Since: 2006/8/12


Great News and Thx , But it seem there still bug with editing Category Name .. this the error when i try to edit he category name and link.

Quote:
Error Code: 0013


ERROR: Could not query the database.
Error: 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 ' title='test', imgurl='http://', weight='0' where cid=1' at line 1


Whatever Hits You , Never was to Mess you , and Whatever Messed U , Never Was to Hit You.

28
optikool
Re: For x-movie users and coders
  • 2009/5/21 19:45

  • optikool

  • Not too shy to talk

  • Posts: 154

  • Since: 2007/3/26


Hi onasre,

From line 1097 to 1110 in the admin/index.php replace
$cid $_POST['cid'];
    
$pid $_POST['pid'];
    
$title $myts->htmlSpecialChars($_POST['title']);
    
$imgurl "";

    if ( empty(
$title))
    {
        
redirect_header("index.php"2_MD_X_MOVIE_ERRORTITLE);
    }
    if ((
$_POST["imgurl"]) || ($_POST["imgurl"] != ""))
    {
        
$imgurl $myts->htmlSpecialChars($_POST["imgurl"]);
    }
    
$weight $myts->htmlSpecialChars($_POST['weight']);

with
$cid = (int) $_POST['cid'];
    
$pid = (int) $_POST['pid'];
    
$title mysql_real_escape_string($_POST['title']);
    
$imgurl "";

    if ( empty(
$title))
    {
        
redirect_header("index.php"2_MD_X_MOVIE_ERRORTITLE);
    }
    if ((
$_POST["imgurl"]) || ($_POST["imgurl"] != ""))
    {
        
$imgurl mysql_real_escape_string($_POST["imgurl"]);
    }
    
$weight = (int) $_POST['weight'];


I put the change in x_movie and uploaded it again.

Optikool

29
onasre
Re: For x-movie users and coders
  • 2009/5/21 20:53

  • onasre

  • Not too shy to talk

  • Posts: 150

  • Since: 2006/8/12


thx Optikool , that did it
Whatever Hits You , Never was to Mess you , and Whatever Messed U , Never Was to Hit You.

30
dlh
Re: For x-movie users and coders
  • 2009/6/19 4:21

  • dlh

  • Posts: 182

  • Since: 2002/2/20


Hi Optikool,

Just downloaded the X_movie module - but am getting errors when trying to unzip. Can you check the package?

Dan
GuitarGearHeads.com

In the words of Thomas Edison, "Hell, there are no rules here--we're trying to accomplish something."

Login

Who's Online

119 user(s) are online (81 user(s) are browsing Support Forums)


Members: 0


Guests: 119


more...

Donat-O-Meter

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

Latest GitHub Commits