48.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

02-05-2013, 03:27 PM (This post was last modified: 02-13-2014 08:00 PM by _Evil_Minds_.)
Post: #1
PhpMyMovie V3 Nulled
PhpMyMovie was designed to allow our customers to
enjoy making powerful websites while doing simple steps for Admin. the
system was mainly a clone of watch-movies.net but we have also
implemented some of sidereel.com's features such as users adding links
for their videos.


Download Link: http://www.mediafire.com/?k2f16x4oi21c8uf

One problem still remains with the script and it may be an easy fix for someone here who can help. I have shared this script, please do the honors of trying to fix the error and share it with us here.

When you follow the installation instructions, import the SQL file and stuff then try to go to the main page of your site, it will say the table "movies" does not exist, and this seems true...The table movies does not appear to be in the SQL file, so if someone knows how to fix this, please provide the movies SQL file so we can import it and fix this.

Big thanks to simey69 for decoding the files that needed decoded.
02-05-2013, 06:04 PM
Post: #2
RE:
Hi,

Happy to have helped.
I'll take a look later today - to see if I can help further with the table issue

Cheers,
Si
02-06-2013, 11:12 AM
Post: #3
RE:
No idea why it is asking for the table movies because the SQL file that you import does not have it and it is like it does not exist, but then again it seems like it may be an important part of the script.
08-22-2013, 03:55 PM
Post: #4
RE:
if anybody wants the table for "movies", mail me to juicyhelper@gmail.com
08-22-2013, 08:46 PM
Post: #5
RE: PhpMyMovie V3 Nulled
(02-05-2013 03:27 PM)_Evil_Minds_ Wrote:  PhpMyMovie was designed to allow our customers to
enjoy making powerful websites while doing simple steps for Admin. the
system was mainly a clone of watch-movies.net but we have also
implemented some of sidereel.com's features such as users adding links
for their videos.


[hide]http://www.mediafire.com/?k2f16x4oi21c8uf[/hide]

One problem still remains with the script and it may be an easy fix for someone here who can help. I have shared this script, please do the honors of trying to fix the error and share it with us here.

When you follow the installation instructions, import the SQL file and stuff then try to go to the main page of your site, it will say the table "movies" does not exist, and this seems true...The table movies does not appear to be in the SQL file, so if someone knows how to fix this, please provide the movies SQL file so we can import it and fix this.

Big thanks to simey69 for decoding the files that needed decoded.
if anybody wants the table for "movies", mail me to juicyhelper@gmail.com

Read more @ bestblackhatforum.com : [GET] PhpMyMovie V3 Nulled http://bestblackhatforum.com/Thread-GET-...z2ch4X8TaC
bestblackhatforum.com
72.gif
02-04-2014, 02:07 AM
Post: #6
RE:
i have full working script and 12k movies database , PM to get this.
02-04-2014, 06:09 AM
Post: #7
RE:
Share it greedy B******
02-05-2014, 11:44 PM (This post was last modified: 02-05-2014 11:50 PM by r0kk0.)
Post: #8
RE:
disable SEO urls in the admin panel or if you have it share the .htaccess file for rewriting, i'll prolly check that later, anyway this table structure work, it may need some tweaks, but the site works

*edit: it looks like there are other tables/columns missing i'll post a fixed version later once i tested the whole site

CREATE TABLE IF NOT EXISTS `movies` (
`id` int(255) NOT NULL AUTO_INCREMENT,
`ratingm` varchar(255) NOT NULL,
`ratingp` int(255) NOT NULL,
`featured` int(255) DEFAULT NULL,
`views` int(255) NOT NULL,
`name` varchar(255) NOT NULL,
`slug` varchar(255) NOT NULL,
`startwith` varchar(255) NOT NULL,
`cat` int(255) NOT NULL,
`uid` int(255) NOT NULL,
`stamp` date NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
02-13-2014, 09:41 PM
Post: #9
RE:
Thanks for fixing the movies table, great to see someone still trying to make this work. Hope to see a fixed version sometime.
04-05-2014, 05:20 PM
Post: #10
RE:
DROP TABLE IF EXISTS `movies`;

CREATE TABLE `movies` (
`id` bigint(10) NOT NULL auto_increment,
`name` varchar(255) default NULL,
`description` text,
`year` varchar(255) default NULL,
`length` varchar(255) default NULL,
`views` bigint(10) default '0',
`ratingp` bigint(10) default '0',
`votes` bigint(10) default '0',
`status` int(1) default '1',
`keywords` text,
`stamp` bigint(10) default '0',
`uid` bigint(10) default '0',
`cat` bigint(10) default '0',
`ratingm` bigint(10) default '0',
`featured` int(1) default '0',
`startwith` varchar(1) default NULL,
`imdb` varchar(255) default NULL,
`released` int(1) default '1',
`releasingon` bigint(10) default NULL,
`genre_str` text,
`slug` varchar(255) default NULL,
`meta_title` varchar(255) default NULL,
`meta_description` varchar(255) default NULL,
`extra` text,
`release_date` bigint(10) default NULL,
PRIMARY KEY (`id`),
FULLTEXT KEY `NewIndex3` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=11617 DEFAULT CHARSET=latin1;


i also found this
60.gif




41.gif