• Welcome to PHPVIBE Forums. Please log in.
avatar_Marius P.

[ Video Sharing CMS v4 ] PHPVibe 3.3 RC1 Issues/Bugs [Please report here]

Started by Marius P.,

Previous topic - Next topic

0 Members and 6 Guests are viewing this topic.

Marius P.Topic starter

Quote from: kayskeem on
Hi Mario,  I got an error saying Warning: Invalid argument supplied for foreach() in  /homepage.php on line 78  This happens when i go to homepage builder.  Any Ideas ?

Hmm...I may have forgot an if. Do you have any boxes actually?
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!
  •  

kayskeem

Quote from: @Mario on
Hmm...I may have forgot an if. Do you have any boxes actually?

No I don't have any boxes yet if I understood u correctly
  •  

Marius P.Topic starter

I forgot to wrap the foreach in an if, thanks for reporting.
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!
  •  

kayskeem

Quote from: @Mario on
I forgot to wrap the foreach in an if, thanks for reporting.

ok you are welcome
  •  

Marius P.Topic starter

Severe bug fixed: all new users in beta where administrators.
File updated in pack: lib/functions.user.php
Thank you Ilie88 for reporting this.
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!
  •  

tkirui

It would be very very handy if we could upload in batch via the admin  and for thumbnails to be creeated automatically rather than have to do this one at a time and attach a picture as a thumbnail.Its painful process if you have to do 10 videos. Is there a script that can do this for me? Also,if i want mobile devices to be able to play my media, what is the best format to upload?
  •  

Marius P.Topic starter

.mp4 works very well for mobiles.
Auto Thumbnail cannot be achieved via pure php, you need ffmpeg and that's heavy, and I haven't  yet digged into that.
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!
  •  

goodspirit

The "change password" changes password but still uses the old password to login, please fix that and the mobile is responsive but doesnt show sidebar when clicked to expand
  •  

Marius P.Topic starter

Quote from: goodspirit on
The "change password" changes password but still uses the old password to login, please fix that and the mobile is responsive but doesnt show sidebar when clicked to expand

That's impossible, I've just tested it, even the code is correct

if(isset($_POST['change-password'])) {
if($_POST['pass1'] == $_POST['pass2']) {
$msg = '<div class="msg-info">'._("Password changed.").'<>';
user::Update('password',sha1($_POST['pass1']));
} else {
$msg = '<div class="msg-warning">'._("Passwords do not match.").'<>';
}
}



I am still looking for sidebar solutions on mobile.
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!
  •  

tkirui

  •  

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!
  •  

Marius P.Topic starter

Or simply modify tpl.globals.php in main theme like this (compare top code) :
function footer_add(){
$footer =  '
< / div>
< / div>
< / div>
<div id="footer">
<div class="container">
<div class="row">
<div class="span2 footer-logo nomargin">
'.show_logo().'
< / div>
<div class="span8 footer-content">
'.apply_filters('the-footer-copyright', get_option('site-copyright')).'
< / div>
< / div>
< / div>< / div>



Add the option called site-copyright via Tools -> Options API with the text/html to show


and in css/vibe.style.css add at the bottom:
#footer {border-top: 1px solid #f4f4f4; }
.footer-content {border-left: 1px solid #f4f4f4;padding:20px;}
.footer-logo {padding:20px;}



And you're done.


The forum strips up divs, so be carefull. Don't copy/paste as I had to write them like


< / div>



You should strip the spaces.
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!
  •  

marius20foc


#footer {border-top: 1px solid #f4f4f4; }
.footer-content {border-left: 1px solid #f4f4f4;padding:20px;}
.footer-logo {padding:20px;}


does not seem to work. there are no borders whatsoever.
added at the end of the vibe.style.css in tpl/main/css.
  •  

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!
  •  

marius20foc

Resolved: It was not from the browser. I flushed and cleaned everything; I guess its hostgator who's making a mess.


Offtopic: I managed to make that searchbox look like a searchbox, I managed to color the footer but still cant figure out how to make static pages(ilie88 is definitely a very good developer, but he is so evasive :). Somehow I understand him ;). I give him credit though for guiding us to something specific.  )
  •  

tkirui

Two issues,

When i delete the youtube videos i had added, they still appear on the website even though not showing in "manage videos" of admin

I have uploaded mp4 files. They can play ok from my website using a phone but i cannot play them from my site using my pc. No error.just black screen
  •  

Marius P.Topic starter

Quote from: marius20foc on
Offtopic: I managed to make that searchbox look like a searchbox, I managed to color the footer but still cant figure out how to make static pages(ilie88 is definitely a very good developer, but he is so evasive :). Somehow I understand him ;). I give him credit though for guiding us to something specific.  )

He knows how to use Google :)
Don't push yourself, in tops 2 days you will be able to make them from administration.
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

Quote from: tkirui on
Two issues,

When i delete the youtube videos i had added, they still appear on the website even though not showing in "manage videos" of admin

I have uploaded mp4 files. They can play ok from my website using a phone but i cannot play them from my site using my pc. No error.just black screen

Never bumped into the second. You need to show me.
Did you delete or unpublish them? As they are different, unpublished are like private, they still show in several places.
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!
  •  

marius20foc

Quote from: @Mario on
Never bumped into the second. You need to show me.
Did you delete or unpublish them? As they are different, unpublished are like private, they still show in several places.

I think I said that already in here somewhere...if not, my bad.
I delete them--> still showing onsite
They move to unpublished videos, but still showing onsite. I think I said it when I asked for a select all/delete/unpublish option :)
  •  

ilie88

Quote from: marius20foc on
I think I said that already in here somewhere...if not, my bad.
I delete them--> still showing onsite
They move to unpublished videos, but still showing onsite. I think I said it when I asked for a select all/delete/unpublish option :)

hello you have to add example in com_search

and ".DB_PREFIX."videos.pub > 0


before every or this is just an example save a second file cause you can crash the query

Regards
website: http://www.movietend.com  Don't PM me regarding news about the script's, I'm not from the stuff i am regular user like anyone else, Regards
  •  

Marius P.Topic starter

But, I did that, maybe you have an older download, it was like a patch a day at least lately.
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!
  •  

tkirui

is there a third party script you can recommend for batch upload of videos using a csv file or something?
  •  

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!
  •  

tkirui

is this likely to be included in the next release?i think this is a very useful admin feature to be able to batch upload videos
  •  

seventhief

still experience default admin for newly registered users.
  •  

Similar topics (7)