[ Video Sharing CMS v4 ] PHPVibe PRO v3.5 [RELEASED]

Started by PHPVibe A.,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Marius P.

Quote from: j9uddin on
Are we allowed to post things for sale on this forum?

As long as it's not something illegal :)
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!
  •  

j9uddin

 :D it's as illegal as it gets! I'm kidding, should I start a new thread??
  •  

Marius P.

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

shtefcs

Sorry for being bored, do you have some ETA when it gonna be released :D ?
  •  

PHPVibe A.Topic starter

Installing it now on 4/6 domains, still 2 to go, for testing.
Minutes, 1h? Something like that!

shtefcs

great. I can test on one developing site of mine if u want.
  •  

j9uddin

@mario, do you do custom modifications for people? Or custom made plugins? I need something done very soon within the script.

  •  

xda

Why i cant upgrade???

1 weeks i wait still in mode " We could not find you any suitable upgrade deal       Browse Products"
  •  

teckvo

Hi I bought script in Dec 2013, am I still in the free upgrade period? Thanks
  •  

xda

Hi I bought script in march 2013. no free upgrade???
  •  

rishab55555

Congrats  Team PHP VIBE on release of new version of PHP VIBE.

Hope this brings great success to you.

I am installing it and will report any bugs.
  •  

Marius P.

xda, just 2 minutes ago we added it in the marketplace.

All buyers from 2013 and 2014 should now be able to click download http://store.phprevolution.com/buy?id=22

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

x5000x

Quote from: @Mario on
xda, just 2 minutes ago we added it in the marketplace.

All buyers from 2013 and 2014 should now be able to click download http://store.phprevolution.com/buy?id=22

Please confirm!

Mario,
It can be downloaded fine from the market place.
  •  

Marius P.

Quote from: rishab55555 on
Congrats  Team PHP VIBE on release of new version of PHP VIBE.

Hope this brings great success to you.

I am installing it and will report any bugs.

Thank you! Please do, we did some parts on the rush.
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.

Quote from: x5000x on
Mario,
It can be downloaded fine from the market place.

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

xda

  •  

rishab55555

Quote from: @Mario on
Thank you! Please do, we did some parts on the rush.

Sure brother, nothing is perfect, will surely report any bugs or improvements.

Can you tell me how can I upgrade 3.4 to 3.5

I have made the site 5-6 days ago and modified it for personal use. What do you suggest upgrading it or doing a fresh install ? I don't mind doing the changes again.

Just worried if upgrade process will be smooth or not.

  •  

Marius P.

The upgrade will not be smooth at all, we did warn that 3.5 will replace 3.4.

All I have right now to give you is the database upgrade:


ALTER TABLE  `vibe_videos` ADD  `privacy` INT( 255 ) NOT NULL DEFAULT  '0';
ALTER TABLE  `vibe_channels` ADD  `type` INT( 255 ) NOT NULL DEFAULT  '1';
ALTER TABLE  `vibe_channels` ADD  `sub` INT NOT NULL DEFAULT  '1';
ALTER TABLE  `vibe_videos` ADD  `media` INT NOT NULL DEFAULT  '1' AFTER  `id` ;
Update `vibe_videos` set media = '2' WHERE source like '%.mp3';
UPDATE `vibe_videos` set media = '3' WHERE source like 'localimage%';
ALTER TABLE  `vibe_homepage` CHANGE  `order`  `ord` INT( 11 ) NOT NULL ;
ALTER TABLE  `vibe_homepage` ADD  `mtype` INT NOT NULL DEFAULT  '1';
CREATE TABLE IF NOT EXISTS `vibe_postcats` (
  `cat_id` int(11) NOT NULL AUTO_INCREMENT,
  `picture` varchar(150) NOT NULL,
  `cat_name` varchar(150) CHARACTER SET utf8 COLLATE utf8_swedish_ci NOT NULL,
  `cat_desc` varchar(500) CHARACTER SET utf8 COLLATE utf8_swedish_ci DEFAULT NULL,
  PRIMARY KEY (`cat_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=0 ;
CREATE TABLE IF NOT EXISTS `vibe_posts` (
  `pid` int(11) NOT NULL AUTO_INCREMENT,
  `ch` int(11) NOT NULL DEFAULT '1',
  `date` text COLLATE utf8_swedish_ci NOT NULL,
  `title` varchar(300) COLLATE utf8_swedish_ci NOT NULL,
  `pic` longtext COLLATE utf8_swedish_ci NOT NULL,
  `content` longtext COLLATE utf8_swedish_ci NOT NULL,
  `tags` varchar(500) COLLATE utf8_swedish_ci NOT NULL,
  PRIMARY KEY (`pid`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_swedish_ci AUTO_INCREMENT=0 ;



And a huge note that the config from 3.4 is no longer valid, it was splitted in vibe_config.php and vibe_setts.php so heads up, better copy paste it.


Good news is this is the last massive upgrade, next one 4.0 will come in 2015, so everybody customize it away.
We will work on patches/fixes (if case) and plugins and themes from now on.
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!
  •  

rishab55555

No problem :)

I will scrap the site and do a fresh installation.

I saved all changes in file, I know files can be different this time but will sort out somehow.

Lets start :) :)
  •  

xda

Quote from: @Mario on
The upgrade will not be smooth at all, we did warn that 3.5 will replace 3.4.

All I have right now to give you is the database upgrade:


ALTER TABLE  `vibe_videos` ADD  `privacy` INT( 255 ) NOT NULL DEFAULT  '0';
ALTER TABLE  `vibe_channels` ADD  `type` INT( 255 ) NOT NULL DEFAULT  '1';
ALTER TABLE  `vibe_channels` ADD  `sub` INT NOT NULL DEFAULT  '1';
ALTER TABLE  `vibe_videos` ADD  `media` INT NOT NULL DEFAULT  '1' AFTER  `id` ;
Update `vibe_videos` set media = '2' WHERE source like '%.mp3';
UPDATE `vibe_videos` set media = '3' WHERE source like 'localimage%';
ALTER TABLE  `vibe_homepage` CHANGE  `order`  `ord` INT( 11 ) NOT NULL ;
ALTER TABLE  `vibe_homepage` ADD  `mtype` INT NOT NULL DEFAULT  '1';
CREATE TABLE IF NOT EXISTS `vibe_postcats` (
  `cat_id` int(11) NOT NULL AUTO_INCREMENT,
  `picture` varchar(150) NOT NULL,
  `cat_name` varchar(150) CHARACTER SET utf8 COLLATE utf8_swedish_ci NOT NULL,
  `cat_desc` varchar(500) CHARACTER SET utf8 COLLATE utf8_swedish_ci DEFAULT NULL,
  PRIMARY KEY (`cat_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=0 ;
CREATE TABLE IF NOT EXISTS `vibe_posts` (
  `pid` int(11) NOT NULL AUTO_INCREMENT,
  `ch` int(11) NOT NULL DEFAULT '1',
  `date` text COLLATE utf8_swedish_ci NOT NULL,
  `title` varchar(300) COLLATE utf8_swedish_ci NOT NULL,
  `pic` longtext COLLATE utf8_swedish_ci NOT NULL,
  `content` longtext COLLATE utf8_swedish_ci NOT NULL,
  `tags` varchar(500) COLLATE utf8_swedish_ci NOT NULL,
  PRIMARY KEY (`pid`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_swedish_ci AUTO_INCREMENT=0 ;



And a huge note that the config from 3.4 is no longer valid, it was splitted in vibe_config.php and vibe_setts.php so heads up, better copy paste it.


Good new is this is the last massive upgrade, next one 4.0 will come in 2015.
We will work on patches/fixes (if case) and plugins and themes from now on.

how to use this?
  •  

Marius P.

Quote from: rishab55555 on
No problem :)

I will scrap the site and do a fresh installation.

I saved all changes in file, I know files can be different this time but will sort out somehow.

Lets start :) :)

Don't do a database reinstall, just run my sql over you database and change vibe_ if you have different prefix.
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.

Quote from: xda on
how to use this?

Via phpmyadmin, or wait for me to write an php file to execute it from.
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!
  •  

Lunar

I think that the setup-folder were missed in the upload to the marketplace? =) I donwloaded 3.5 but can't find the setup-folder in php vibe 3.5.

Congratulations to an awesome job. Looking forward to play with the release all night :)
  •  

shtefcs

Must have: Read Me file should be user friendly Read Me.html

Also, links in readme are wrong. http://screencast.com/t/dq2bN2elodEL
  •  

Marius P.

Quote from: Puckvids on
I think that the setup-folder were missed in the upload to the marketplace? =) I donwloaded 3.5 but can't find the setup-folder in php vibe 3.5.

Congratulations to an awesome job. Looking forward to play with the release all night :)

Indeed, uploading it now :)
Sorry, we haven't sleeped much lately...
Thank you!
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)

Replies: 13
Views: 1847

Replies: 16
Views: 2249

Replies: 1
Views: 947

Replies: 6
Views: 1626

Replies: 2
Views: 3045