Lunohod Posted February 15, 2019 Group: Members Topic Count: 16 Topics Per Day: 0.00 Content Count: 41 Reputation: 1 Joined: 01/29/16 Last Seen: April 23, 2023 Share Posted February 15, 2019 сама ошибка Page Not Found The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again. /?module=main&action=downloads modules/main/download.php <?php if (!defined('FLUX_ROOT')) exit; $pages = Flux::config('FluxTables.CMSPagesTable'); $path = trim($params->get('path')); $sql = "SELECT title, body, modified FROM {$server->loginDatabase}.$pages WHERE path = ?"; $sth = $server->connection->getStatement($sql); $sth->execute(array($path)); $pages = $sth->fetchAll(); if($pages) { foreach($pages as $prow) { $title = $prow->title; $body = $prow->body; $modified = $prow->modified; } } else { $this->redirect($this->url('main','index')); } ?> and themes/default/main/downloads.php <?php if (!defined('FLUX_ROOT')) exit; ?> <div class="heading">Downloads</div> <li><a href="<?php something goes here?>">downloads</a>https://drive.google.com/file/d/1IuAdeK-xrrCD0tMfNjE6Z_XFfGlaXtSr/view</li> в чем ошибка кто может детально помочь Спасибо заранее ... Quote Link to comment Share on other sites More sharing options...
Balfear Posted February 16, 2019 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 256 Reputation: 245 Joined: 07/24/13 Last Seen: March 24 Share Posted February 16, 2019 (edited) В отсутствии страницы downloads в main? О_о The page you have requested was not found on our server. создай/добавь страницу downloads.php в modules/main/... и в theme/default/main/... Edited February 16, 2019 by Balfear Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.