Mod Adk Portal (2.0)

Adk portal is a portal integrated to SMF, with multiple extensions and features.
The portal is aimed at simple and intuitive to the Administrator.
It has all the characteristics of portal, in addition to having a great set of downloads, system of internal pages, etc.

Mod Adk Seo (3.0)

Adk Seo is an internal system of SMF to improve your ranking.
It has powerful features to appear on the top of major search engines.
With this product, you can change your urls, choose your format, encouraging social activity on your site, place their own sitemaps, etc.
Mod Adk Blog (2.0)

Adk blog is an internal system of SMF to help encourage business users.
This product will create a space where your users can use as your own blog, creating categories, entries, and managing your comments.


Problem creating new pages


Board:

Support

Topic:

Problem creating new pages


Description:

Support Forum adk portal

Author Topic: Problem creating new pages  (Read 589 times)

0 Members and 1 Guest are viewing this topic.

Problem creating new pages

eB|Kami

  • Newbie
  • *
  • Posts: 28
  • Karma: 0
  • Deutscher Übersetzer
    • View Profile
    • eBook-Talk
Problem creating new pages
« on: September 08, 2010, 01:51:20 PM »
Necesito ayuda!  ;D
Hi again,

i have another problem, maybe you can help me.
I try to create a new page. I fill out everything and after clicking on create the following error appears:

Code: [Select]
Fatal error: require_once() [function.require]: Failed opening required '/Subs-Editor.php' (include_path='.:/usr/share/php:..') in /www/htdocs/w00958b4/ebook/Sources/Adk-Modules.php on line 195
Ok, so i checked my FTP, the file subs-editor.php is located at /sources/, is that correct?

Here is the content of my adk-modules.php:

Code: [Select]
<?php
/********************************************************
* Adk Portal                   
* Version: 2.0  Rc4               
* Official support: http://www.smfpersonal.net           
* Founder: Lucas-ruroken
* Date: 2010
* Smf Personal forum site!
/**********************************************************/


if (!defined('SMF'))
die('Hacking attempt...');

function 
AdkModules()
{

global $context$txt$settings;

isAllowedTo('adk_portal');

loadTemplate('Adk-Modules');

if(loadLanguage('Adk-Admin') == false)
loadLanguage('Adk-Admin','english');

$subActions = array(
'intro' => 'introAdk',
'viewadminpages' => 'viewadminpages',
'createpages' => 'createpages',
'savecreatedpages' => 'savecreatedpages',
'editpages' => 'editpages',
'saveeditpages' => 'saveeditpages',
'deletepages' => 'deletepages',
'uploadanyimage' => 'UploadNewImage',
'saveuploadimg' => 'SaveUploadNewImage',
'manageimagesadk' => 'ManageImagesAdk',
'deleteimagesadk' => 'DeleteImagesAdk',
'savesettingsimagesadk' => 'SaveSettingsImagesAdk',

);


$context[$context['admin_menu_name']]['tab_data'] = array(
'title' => $txt['adk_modules_settings'],
'description' => $txt['adk_first_modules'],
'tabs' => array(
'intro' => array(
'description' => $txt['adk_first_modules'],
'label' => '<img style="vertical-align: middle;" alt="" src="'.$settings['default_theme_url'].'/images/admin/intro.png" />'.$txt['adk_modules_intro'],
),
'viewadminpages' => array(
'description' => $txt['adk_second_modules'],
'label' => '<img style="vertical-align: middle;" alt="" src="'.$settings['default_theme_url'].'/images/admin/pages.png" />'.$txt['adk_admin_pages'],
),
'uploadanyimage' => array(
'description' => $txt['adk_tirth_modules'],
'label' => '<img style="vertical-align: middle;" alt="" src="'.$settings['default_theme_url'].'/images/admin/imagesadvanced.png" />'.$txt['advanced_block_images'],
),
'manageimagesadk' => array(
'description' => $txt['adk_fourth_modules'],
'label' => '<img style="vertical-align: middle;" alt="" src="'.$settings['default_theme_url'].'/images/admin/images.png" />'.$txt['adk_manage_images'],
),
),
);

// Follow the sa or just go to View function
if (!empty($_GET['sa']) && !empty($subActions[$_GET['sa']]))
$subActions[@$_GET['sa']]();
else
$subActions['intro']();

}

function 
introAdk()
{
global $context$txt;

$context['sub_template']  = 'introAdk';

//Set the page title
$context['page_title'] = $txt['adk_modules_intro'];

$context['file'] = file_get_contents('http://www.smfpersonal.net/news/modulos_disponibles_2.0Rc2.txt');



}


function 
viewadminpages()
{


global $context$txt$smcFunc;
checkSession('get');

//Load main trader template.
$context['sub_template']  = 'viewadminpages';

//Set the page title
$context['page_title'] = $txt['adk_admin_pages'];

$sql $smcFunc['db_query']('','SELECT id_page, titlepage, urltext, views FROM {db_prefix}adk_pages ORDER BY titlepage ASC');
$context['total_admin_pages'] = array();

while($row $smcFunc['db_fetch_assoc']($sql))
{
$context['total_admin_pages'][] = array(
'id_page' => $row['id_page'],
'titlepage' => $row['titlepage'],
'urltext' => $row['urltext'],
'views' => $row['views'],
);
}

$smcFunc['db_free_result']($sql);




}

function 
createpages()
{

global $context$txt$smcFunc$sourcedir$adkportal;

checkSession('get');

//Load main trader template.
$context['sub_template']  = 'createpages';

//Set the page title
$context['page_title'] = $txt['adk_admin_pages_create'];

$sql $smcFunc['db_query']('','
SELECT id_group, group_name 
FROM {db_prefix}membergroups  
ORDER BY id_group DESC'
); 

$context['group_view_pages'] = array();

while($row $smcFunc['db_fetch_assoc']($sql))
{
$context['group_view_pages'][] = array(
'id' => $row['id_group'],
'name' => $row['group_name']
);
}

$smcFunc['db_free_result']($sql);

// Needed for the WYSIWYG editor.
require_once($sourcedir '/Subs-Editor.php');

// Now create the editor.
$editorOptions = array(
'id' => 'descript',
'value' => '',
'width' => '97%',
'form' => 'picform',
'labels' => array(
'post_button' => '',
),
);
create_control_richedit($editorOptions);
$context['post_box_name'] = $editorOptions['id'];



}

function 
savecreatedpages()
{

global $context$txt$smcFunc;

checkSession('post');

$titlepage htmlspecialchars($_POST['titlepage'], ENT_QUOTES);
$urltext htmlspecialchars($_POST['urltext'], ENT_QUOTES);

if(!empty($_POST['groups_allowed']))
{
$groups_allowed array_keys($_POST['groups_allowed']);
$groups_allowed implode(',',$groups_allowed);
}
else
$groups_allowed '';

if (!empty($_REQUEST['descript_mode']) && isset($_REQUEST['descript']))
{
require_once($sourcedir '/Subs-Editor.php');

$_REQUEST['descript'] = html_to_bbc($_REQUEST['descript']);

// We need to unhtml it now as it gets done shortly.
$_REQUEST['descript'] = un_htmlspecialchars($_REQUEST['descript']);

}

$enableleft = (int)$_POST['enableleft'];
$enableright = (int)$_POST['enableright'];
$type $_POST['type'];
$body htmlspecialchars(stripslashes($_REQUEST['descript']),ENT_QUOTES);
$cattitlebg $_POST['cattitlebg'];
$winbg $_POST['winbg'];
$views 0;

$sql $smcFunc['db_query']('','
SELECT urltext
FROM {db_prefix}adk_pages'
);

WHILE($row $smcFunc['db_fetch_assoc']($sql))
$context['load_urltext'][] = $row['urltext'];

if(!empty($context['load_urltext']) && in_array($urltext,$context['load_urltext']))
fatal_lang_error('duplicate_adk_pages',FALSE);

if(empty($titlepage))
fatal_lang_error('adk_categorie_not_title',false);


$smcFunc['db_query']('',"
INSERT INTO {db_prefix}adk_pages (urltext,titlepage,body,views,grupos_permitidos, type,
winbg, cattitlebg, enableleft, enableright)
VALUES
('$urltext','$titlepage','$body','$views','$groups_allowed','$type','$winbg','$cattitlebg',
'$enableleft', '$enableright')
"
);


redirectexit('action=admin;area=modules;sa=viewadminpages;sesc=' $context['session_id']);


}

function 
deletepages()
{
global $smcFunc$context;

checkSession('get');

if(!empty($_REQUEST['id']) && is_numeric($_REQUEST['id']))
$id = (int) $_REQUEST['id'];
else
$id 0;

$smcFunc['db_query']('','DELETE FROM {db_prefix}adk_pages WHERE id_page = {int:page}',array('page' => $id,));

redirectexit('action=admin;area=modules;sa=viewadminpages;sesc=' $context['session_id']);


}

function 
editpages()
{

global $context$txt$smcFunc$sourcedir;
checkSession('get');

//Load main trader template.
$context['sub_template']  = 'editpages';

//Set the page title
$context['page_title'] = $txt['adk_admin_pages_edit'];

if(!empty($_REQUEST['id']))
$id = (int) $_REQUEST['id'];
else
fatal_lang_error('error_adk_not_id',FALSE);

$sql $smcFunc['db_query']('','
SELECT * 
FROM {db_prefix}adk_pages 
WHERE id_page = {int:page}'
,
array(
'page' => $id,
)
);

$row $smcFunc['db_fetch_assoc']($sql);

$context['edit_admin_page'] = array(
'id_page' => $row['id_page'],
'body' => un_htmlspecialchars($row['body']),
'urltext' => un_htmlspecialchars($row['urltext']),
'titlepage' => un_htmlspecialchars($row['titlepage']),
'grupos_permitidos' => $row['grupos_permitidos'],
'type' => $row['type'],
'winbg' => $row['winbg'],
'cattitlebg' => $row['cattitlebg'],
'enableleft' => $row['enableleft'],
'enableright' => $row['enableright']
);


if(empty($context['edit_admin_page']['titlepage']))
fatal_lang_error('error_adk_not_id',FALSE);

$smcFunc['db_free_result']($sql);


// Needed for the WYSIWYG editor.
require_once($sourcedir '/Subs-Editor.php');

// Now create the editor.
$editorOptions = array(
'id' => 'descript',
'value' => $context['edit_admin_page']['body'],
'width' => '97%',
'form' => 'picform',
'labels' => array(
'post_button' => '',
),
);
create_control_richedit($editorOptions);
$context['post_box_name'] = $editorOptions['id'];


}

function 
saveeditpages()
{
checkSession('post');

global $context$txt$smcFunc$sourcedir;

$titlepage htmlspecialchars($_POST['titlepage'], ENT_QUOTES);
$urltext htmlspecialchars($_POST['urltext'], ENT_QUOTES);

if(!empty($_POST['groups_allowed']))
{
$groups_allowed array_keys($_POST['groups_allowed']);
$groups_allowed implode(',',$groups_allowed);
}
else
$groups_allowed '';

if (!empty($_REQUEST['descript_mode']) && isset($_REQUEST['descript']))
{
require_once($sourcedir '/Subs-Editor.php');

$_REQUEST['descript'] = html_to_bbc($_REQUEST['descript']);

// We need to unhtml it now as it gets done shortly.
$_REQUEST['descript'] = un_htmlspecialchars($_REQUEST['descript']);

}

$enableleft = (int)$_POST['enableleft'];
$enableright = (int)$_POST['enableright'];
$type $_POST['type'];
$body htmlspecialchars(stripslashes($_REQUEST['descript']),ENT_QUOTES);
$cattitlebg $_POST['cattitlebg'];
$winbg $_POST['winbg'];
//$views = 0;

$id_page $_POST['id_page'];

$sql $smcFunc['db_query']('','
SELECT urltext
FROM {db_prefix}adk_pages'
);

WHILE($row $smcFunc['db_fetch_assoc']($sql))
$context['load_urltext'][] = $row['urltext'];

$i 0;

foreach($context['load_urltext'] AS $newurl)
{
if($newurl == $urltext)
$i++;
}

if($i 1)
fatal_lang_error('duplicate_adk_pages',FALSE);

if(empty($titlepage))
fatal_lang_error('adk_categorie_not_title',false);

$smcFunc['db_query']('','UPDATE {db_prefix}adk_pages
SET titlepage = {string:titlepage}, urltext = {string:urltext},
grupos_permitidos = {string:grupos}, type = {string:type},
body = {string:body}, winbg = {string:winbg}, cattitlebg = {string:cat},
enableleft = {int:left}, enableright = {int:right}
WHERE id_page = {int:page}'
,
array(
'titlepage' => $titlepage,
'urltext' => $urltext,
'grupos' => $groups_allowed,
'type' => $type,
'body' => $body,
'winbg' => $winbg,
'cat' => $cattitlebg,
'left' => $enableleft,
'right' => $enableright,
'page' => $id_page,
)
);





redirectexit('action=admin;area=modules;sa=viewadminpages;sesc=' $context['session_id']);


}

function 
UploadNewImage()
{
global $context$txt;

checkSession('get');

$context['sub_template'] = 'adk_new_image';
$context['page_title'] = $txt['advanced_block_images'];
/*($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
*/
}


function 
SaveUploadNewImage()
{
global $context$smcFunc$txt$boarddir$boardurl;

checkSession('post');

if(empty($_POST['url']))
fatal_lang_error('adk_require_url_p',false);

if(empty($_FILES['image']['name']) && empty($_POST['image2']))
fatal_lang_error('not_select_image_icon',false);

$style = !empty($_POST['format']) ? (int)$_POST['format'] : 2;
$url htmlspecialchars(stripslashes($_POST['url']),ENT_QUOTES);
$filename htmlspecialchars(stripslashes($_POST['image2']),ENT_QUOTES);

$explode explode('.',$filename);
$count count($explode) - 1;
$extension $explode[$count];

if(!empty($_FILES['image']['name']))
{
if($_FILES['image']['type'] == "image/gif" 
|| $_FILES['image']['type'] == "image/png" 
|| $_FILES["image"]["type"] == "image/jpeg"
|| $_FILES["image"]["type"] == "image/pjpeg")
{
$filename2 $boarddir.'/adkportal/tmp/'.$_FILES['image']['name'];
$filename $boardurl.'/adkportal/tmp/'.$_FILES['image']['name'];
$explode explode('.',$_FILES['image']['name']);
$count count($explode) - 1;
$extension $explode[$count];


@chmod($boardir.'/adkportal/tmp',777);
move_uploaded_file($_FILES['image']['tmp_name'], $filename2);

//@chmod($boardir.'/adkportal/tmp/'.$filename,644);
//@chmod($boardir.'/adkportal/tmp',644);

}
else
fatal_lang_error('not_select_image_icon',false);
}


$watermark htmlspecialchars(stripslashes($_POST['wm']));
$imagen_name $boarddir.'/adkportal/images/'.time().'.JPG';
$imagen_name2 $boardurl.'/adkportal/images/'.time().'.JPG';

//Generate Image ;)
load_AvdImage($watermark$filename$extension$style$imagen_name);

$smcFunc['db_query']('',"
INSERT INTO {db_prefix}adk_advanced_images
VALUES
(NULL,'$imagen_name2','$url')
"
);

if(!empty($_FILES['image']['name']))
{
if($_FILES['image']['type'] == "image/gif" 
|| $_FILES['image']['type'] == "image/png" 
|| $_FILES["image"]["type"] == "image/jpeg"
|| $_FILES["image"]["type"] == "image/pjpeg")
{
unlink($filename2);
@chmod($boardir.'/adkportal/tmp',644);
}
}

redirectexit('action=admin;area=modules;sa=manageimagesadk;sesc='.$context['session_id']);



}


function 
ManageImagesAdk()
{
checkSession('get');

global $context$smcFunc$txt$scripturl;
$context['sub_template'] = 'manages_images';
$context['page_title'] = $txt['adk_opcion_yeahhhh'];

//Load Images
$context['start'] = !empty($_REQUEST['start']) ? (int)$_REQUEST['start'] : 0;
$limit 6;

$load $smcFunc['db_query']('','
SELECT COUNT(*) AS total
FROM {db_prefix}adk_advanced_images'
);
$row $smcFunc['db_fetch_assoc']($load);
$total $row['total'];
$smcFunc['db_free_result']($load);


$sql $smcFunc['db_query']('',"
SELECT id,image,url
FROM {db_prefix}adk_advanced_images
ORDER BY id DESC
LIMIT $context[start], $limit
"
);
$context['load_img'] = array();
while($row $smcFunc['db_fetch_assoc']($sql))
{
$context['load_img'][] = array(
'id' => $row['id'],
'url' => $row['url'],
'image' => $row['image'],
);
}

$smcFunc['db_free_result']($sql);

$context['page_index'] = constructPageIndex($scripturl '?action=admin;area=modules;sa=manageimagesadk;sesc='.$context['session_id'], $context['start'], $total$limit);
}


function 
DeleteImagesAdk()
{
checkSession('get');
global $smcFunc$context$boarddir,$boardurl;

$id = !empty($_REQUEST['id']) ? (int)$_REQUEST['id'] : 0;

if(!empty($_REQUEST['url2']))
$url htmlspecialchars(stripslashes($_REQUEST['url2']),ENT_QUOTES);
else
fatal_lang_error('adk_require_url',false);

$url str_replace($boardurl,$boarddir,$url);

@chmod($url,777);
@unlink($url);

$smcFunc['db_query']('','
DELETE FROM {db_prefix}adk_advanced_images
WHERE id = {int:id}'
,
array(
'id' => $id,
)
);

redirectexit('action=admin;area=modules;sa=manageimagesadk;sesc='.$context['session_id']);

}

function 
savesettingsimagesadk()
{
checkSession('post');

//$enable = isset($_POST['enable']) ? 1 : 0;
//$body = isset($_POST['body']) ? 1 : 0;
//$title = htmlspecialchars(stripslashes($_POST['title']),ENT_QUOTES);
$cantidad = (int)$_POST['cantidad'];

updateSettingsAdkPortal(
array(
'adv_top_image_limit' => $cantidad,
)
);


global $context;
redirectexit('action=admin;area=modules;sa=manageimagesadk;sesc='.$context['session_id']);

}



?>


Thanks!

Sorry visitor. To access the SMF Personal answers, you need to Register or Login.

Atte. SMF Personal

Tags

 



Related topics / Otros temas de su interes

  Topic Author Date  
Add comments to news articles MrChainsaw January 25, 2011, 05:52:53 PM
ADK simple gallery bug johnR June 21, 2010, 03:37:42 PM
Adk Blog not showing up anywhere? astronerd January 05, 2012, 06:32:06 PM
Hundreds of errors clothahump November 27, 2010, 07:09:28 AM
About Adk Portal V2.0 Rc2 (Working) Snailx March 13, 2010, 10:34:56 PM
Rss buhuhu June 13, 2010, 09:30:49 AM



 
Application Parser To Mod

It is a system developed by SMF Personal, similar to parse smf, but with the difference that it not only show us the steps to install mods but also show us the steps to uninstall and update mods.
The mods that can be analyzed are obviously those who are raised in SMF Personal.
Section Mods

In this section you will find all mods done by the staff and users of SMF Personal.
The mods are displayed in a simple and easy to read.
Section Tutorials

In this section you will find all the tutorials made by our staff and users of SMF Personal.
The tutorials are displayed in a simple and easy to read.

SMF 2.0.2 | SMF © 2011, Simple Machines
Adk Portal 2.0
& Adk Seo 3.0
This site is not affiliated with or endorsed by Simple Machines