avatar_Marius P.

[ Video Sharing CMS v4 ] PHPVibe 3.3 RC 2

Started by Marius P.,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Marius P.Topic starter

Can't give an eta, there are other projects on hold as well, and we need to take one by one.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

Marius P.Topic starter

Committed a change to :

moderator/setts.php
Added default owner for cron id change.
lib/class.youtube.php
Added default user support for cron.

To apply, replace this 2 files with newer ones and also add an option called importuser with value of your user id via Tool -> Options API



Now you have an user for the cron imports.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

causita

Mario do not forget the patch ids change videos to numbers and letters. please or add it as a plugin.
  •  

fireslayed

you're great mario was very good hands health finally published the rc2
  •  

Marius P.Topic starter

Quote from: causita on
Mario do not forget the patch ids change videos to numbers and letters. please or add it as a plugin.

You can't change ids to numbers.
You can switch to another table field the selection, like "token" but it would require editing on at least 10 files.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishan

@Mario I am waiting for you to finish the vimeo plugin, As soon as you finish, then i will start doing something stupid with your script :)
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.Topic starter

Well, work time is over for this week, it's weekend, but will try to start with that on monday.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

causita

Mario, I give my ftp details for you to do for me, is the only change I want to make a website, I would greatly appreciate it. please can you do this job?.
  •  

Marius P.Topic starter

That would take to much and there are other things that need urgent updates. I will try to that as plugin when time comes.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

causita

  •  

Marius P.Topic starter

Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishan

Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Martin

I have some error file it creates on it's own and there is some error in the script:


[10-Oct-2013 22:31:14] PHP Notice:  Undefined variable: video in /home2/auto/public_html/all/vidbg.com/com/com_video.php on line 10
[10-Oct-2013 22:31:14] PHP Notice:  Trying to get property of non-object in /home2/auto/public_html/all/vidbg.com/tpl/main/tpl.globals.php on line 55
[10-Oct-2013 22:31:14] PHP Notice:  Trying to get property of non-object in /home2/auto/public_html/all/vidbg.com/tpl/main/tpl.globals.php on line 57

Marius P.Topic starter

My line 55 has
return $meta;


and 57 is blank.
What's on yours?
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

Marius P.Topic starter

Probably an access to a wrong video.

You could swipe

if ($video) {



with


if (isset($video) && $video) {



to avoid the notice
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

Martin

#140
55 -
<meta property="og:image" content="'.thumb_fix($video->thumb).'" />

57 -
<meta property="og:title" content="'._html($video->title).'" />';



com_video.php:

line 10 -

if ($video) {





Marius P.Topic starter

Oh, that simply wrapp the facebook open meta tags with

if (isset($video) && $video) {
meta tags here
}
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

sanishan

If you have problem running cron job, i find a way to fix the problem

open index.php file
find:
/usr/bin/php5


Replace with PHP path:
/usr/local/bin/php5 (please put the correct path it just a example path)



I don't know if someone else share this but i have find this while testing the script.
Thanks,
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.Topic starter

Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

Martin

Mario when I add the code u gave me this doesn't show up anymore:

<meta property="og:image" content="http://i4.ytimg.com/vi/mGR9nMTIjEI/0.jpg" />
<meta property="og:image" content="blabla"/>
<meta property="og:title" content="blabla" />


so please more specific which files I need to edit with which code.. to fix this

hyipbiz

I'm have error , when try share link from youtube have errror .

http://domain.com/share&type=2&step=2

Notice: Undefined index: title in /home4/xxxx/public_html/domain.com/com/com_share.php on line 196

Notice: Undefined index: duration in /home4/xxxx/public_html/domain.com/com/com_share.php on line 225

Notice: Undefined index: description in /home4/xxx/public_html/domain.com/com/com_share.php on line 252

How can i fix it ?
  •  

sanishan

Quote from: hyipbiz on
I'm have error , when try share link from youtube have errror .

http://domain.com/share&type=2&step=2

Notice: Undefined index: title in /home4/xxxx/public_html/domain.com/com/com_share.php on line 196

Notice: Undefined index: duration in /home4/xxxx/public_html/domain.com/com/com_share.php on line 225

Notice: Undefined index: description in /home4/xxx/public_html/domain.com/com/com_share.php on line 252

How can i fix it ?

You need to became a verified customer then ask your question, @MARIO can't help you until you are verified customer..

Use this link to became a verified customer by submitting the purchase detail:
http://phprevolution.com/contact-us/
Free PHPVibe Professional Customized Plugin http://phpvibemod.com/
  •  

Marius P.Topic starter

Quote from: Martin on
Mario when I add the code u gave me this doesn't show up anymore:

<meta property="og:image" content="http://i4.ytimg.com/vi/mGR9nMTIjEI/0.jpg" />
<meta property="og:image" content="blabla"/>
<meta property="og:title" content="blabla" />


so please more specific which files I need to edit with which code.. to fix this

Those are just in tpl.globals.php

Your code should look like this:
if(com() == video) {
global $video;
if (isset($video) && $video) {
$meta .= '
<meta property="og:image" content="'.thumb_fix($video->thumb).'" />
<meta property="og:description" content="'.seo_desc().'"/>
<meta property="og:title" content="'._html($video->title).'" />';
}
}
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

MacKen

RUN CODE PHPVIBE localhost  : link http://localhost:9999/phpvibe/

DEMO HOME :  OK

CLICK mouse  all on page:  link back http://localhost:9999/xampp/

Help  me  plz .... config  .htaccess

Thanks you............
  •  

Marius P.Topic starter

We don't support localhost...but, it your xampp setup with mod_rewrite? You need all this in the environment http://phprevolution.com/requirements/
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

Similar topics (7)