All in One Video Downloader Script

All in One Video Downloader Script V2.20.0

No permission to download

xx85

Active member
Feb 18, 2019
115
28
28
[QUOTE = "coeur51, post: 162458, membro: 8676"]
Se você pode configurar a reescrita de URL, pode ser um trabalho. Mas, por padrão, apenas o arquivo .htaccess está incluído.
[/CITAR]
yeh...u understand but the page do not open...i dont know if need directives for nginx...
 

xx85

Active member
Feb 18, 2019
115
28
28
If you can configure URL rewriting it can be work. But by default only .htaccess file included.
im tryin this code :


RewriteEngine On
RewriteRule ^sitemap\.xml$sitemap.php [L]
RewriteCond %{THE_REQUEST}^GET\/index\.php\?page=([\s&]+) [NC]
RewriteRule ^index\.php$/page/% 1? [R=301,L]
RewriteRule ^page/([/] +)/?$/Index.php?page=$1 [NC,L]



but i think its not ok..you can help me....
so thank you.
 

coeur51

Member
Nov 5, 2018
39
33
18
im tryin this code :


RewriteEngine On
RewriteRule ^sitemap\.xml$sitemap.php [L]
RewriteCond %{THE_REQUEST}^GET\/index\.php\?page=([\s&]+) [NC]
RewriteRule ^index\.php$/page/% 1? [R=301,L]
RewriteRule ^page/([/] +)/?$/Index.php?page=$1 [NC,L]



but i think its not ok..you can help me....
so thank you.
Try :

Code:
RewriteEngine On
RewriteRule ^ sitemap \ .xml $ sitemap.php [L]
RewriteCond% {THE_REQUEST} ^ GET \ /index\.php\?page=([\s&]+) [NC]
RewriteRule ^ index \ .php $ / page /% 1? [R = 301, L]
RewriteRule ^ page / ([ /] +) /? $ /Index.php?page=$1 [NC, L]
 
Last edited:

Vasiliik

New member
May 4, 2020
5
4
3
Content editing does not work error on line 218 PHP Fatal error: Uncaught PDOException: SQLSTATE [HY093]: Invalid parameter number: parameter was not defined in / var / www / www-root / data / www / site / admin / classes / database. class.php: 218

All extensions are enabled and the server is configured. This is a script error.
 
Last edited:

coeur51

Member
Nov 5, 2018
39
33
18
Content editing does not work error on line 218 PHP Fatal error: Uncaught PDOException: SQLSTATE [HY093]: Invalid parameter number: parameter was not defined in / var / www / www-root / data / www / site / admin / classes / database. class.php: 218

All extensions are enabled and the server is configured. This is a script error.
Edit file : /admin/classes/database.class.php

Line 210, replace :

Code:
$query = self::$db->prepare("UPDATE contents SET content_text=:content_text, content_slug=:content_slug, content_title=:content_title, content_opt=:content_opt, content_description=:content_description WHERE ID=:content_id");

by :

Code:
$query = self::$db->prepare("UPDATE contents SET content_text=:content_text, content_slug=:content_slug, content_title=:content_title, content_opt=:content_opt, content_description=:content_description, content_type=:content_type WHERE ID=:content_id");
 
  • Like
Reactions: symbianzone

babiato12345

New member
May 5, 2020
8
2
3
much appreciate for the script. after install, i cant login to admin

PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'xxxxxxx_download.options' doesn't exist in admin/classes/database.class.php:59S

checked in phpmyadmin, all 5 tables are there with content

Any advice?
 
Last edited:

coeur51

Member
Nov 5, 2018
39
33
18
much appreciate for the script. after install, i cant login to admin

PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'xxxxxxx_download.options' doesn't exist in admin/classes/database.class.php:59S

checked in phpmyadmin, all 5 tables are there with content

Any advice?
You are using MariaDB or MySQL because the port is not same

If MySQL, Open file system/db.php and check line 2:

Code:
$ database ["host"] = "localhost";
 
Last edited:

xx85

Active member
Feb 18, 2019
115
28
28
Try :

Code:
RewriteEngine On
RewriteRule ^ sitemap \ .xml $ sitemap.php [L]
RewriteCond% {THE_REQUEST} ^ GET \ /index\.php\?page=([\s&]+) [NC]
RewriteRule ^ index \ .php $ / page /% 1? [R = 301, L]
RewriteRule ^ page / ([ /] +) /? $ /Index.php?page=$1 [NC, L]
ive try but the problem continue with page...i think it some directive to nginx...
 

Vasiliik

New member
May 4, 2020
5
4
3
[QUOTE = "coeur51, должность: 163604, участник: 8676"]
Редактировать файл: /admin/classes/database.class.php

Строка 210, заменить:

Code:
 $ query = self :: $ db-> prepare ("ОБНОВЛЕНИЕ содержимого SET SET content_text =: content_text, content_slug =: content_slug, content_title =: content_title, content_opt =: content_opt, content_description =: content_description WHERE ID =: content_id") ;[/КОД]

по :

[CODE] $ query = self :: $ db-> prepare ("ОБНОВИТЬ содержимое SET SET content_text =: content_text, content_slug =: content_slug, content_title =: content_title, content_opt =: content_opt, content_description =: content_description, content_type =: content_type WHERE ID =: content_id "); [/ КОД]
[/ QUOTE]
Try :

Code:
RewriteEngine On
RewriteRule ^ sitemap \ .xml $ sitemap.php [L]
RewriteCond% {THE_REQUEST} ^ GET \ /index\.php\?page=([\s&]+) [NC]
RewriteRule ^ index \ .php $ / page /% 1? [R = 301, L]
RewriteRule ^ page / ([ /] +) /? $ /Index.php?page=$1 [NC, L]

Yes, thanks for the answer but, all the same, the editor falls off and glitches when adding a picture, it does not appear
 

babiato12345

New member
May 5, 2020
8
2
3
You are using MariaDB or MySQL because the port is not same

If MySQL, Open file system/db.php and check line 2:

Code:
$ database ["host"] = "localhost";

MySql. I can see localhost no issue. database also createds
 

Attachments

  • aio.PNG
    aio.PNG
    16.7 KB · Views: 27
  • aio 2.PNG
    aio 2.PNG
    65 KB · Views: 27

c99

New member
Jan 14, 2020
3
0
1
There is new version out already 1.6.3

About nginx config:

location / {
try_files $uri $uri/ /index.php?$args;
index index.html index.php;
}

location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
include fastcgi_params;
}

This works fine
 

symbianzone

Member
Nov 17, 2018
50
8
8
Edit file : /admin/classes/database.class.php

Line 210, replace :

Code:
$query = self::$db->prepare("UPDATE contents SET content_text=:content_text, content_slug=:content_slug, content_title=:content_title, content_opt=:content_opt, content_description=:content_description WHERE ID=:content_id");

by :

Code:
$query = self::$db->prepare("UPDATE contents SET content_text=:content_text, content_slug=:content_slug, content_title=:content_title, content_opt=:content_opt, content_description=:content_description, content_type=:content_type WHERE ID=:content_id");

Thank you, it works!

There is one more issue, when the URL is shared on social media via share buttons on the download page, when anyone opens that shared link, it gives error to download files.
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu