Yes, i need a marketer for this. Please contact me by mail
Thanks!
PD: Disculpa mi ingles es muy malo :P
Are you saying it is better? If so, I will try it!
Should I try it? (I am using SP ATM)Yes.
YAY! (I will wait until all my mods I use are compatible with RC3)
I have english setup as default language with spanish and japanese as selectable. It shows for top posters area "menssages" How I get it to say "posts"? (I use notepad normally, and it has all the line breaks, but today all the lines are one-after-another, no line breaks, and I cannot find what I need to edit)
$txt['adk_posts'] = 'Menssages';
Could you please add a english language pack to your smfpersonal.net website? So I can read everything? Thanks!
Error in Package Installation
At least one error was encountered during a test installation of this package. It is strongly recommended that you do not continue with installation unless you know what you are doing, and have made a backup very recently. This error may be caused by a conflict between the package you're trying to install and another package you have already installed, an error in the package, a package which requires another package that you don't have installed yet, or a package designed for another version of SMF.
you can use the parse in the mod site.... you select your smf version, select your package and click in parse... you should be able to manually install.
you forgive me for my English :P
Greetings and if you have any question please ask me
Thanks for your response...
I have no idea where to even begin...I have no tech knowledge...Could anyone recommend a good, basic tutorial on how to manually edit or parse?
Looks good. maybe someday i will use this portal instead of the current one.
i love the full horizontal bar a lot.
Adk portal v2.0 rc3 is now releasedVery good news! 8)
$txt['foro']
'Forum'
in Subs.php search:Code: [Select]$txt['foro']
and replace with:Code: [Select]'Forum'
Parse error: syntax error, unexpected T_STRING, expecting ')' in /home/forumnep/public_html/Sources/Subs.php on line 3844
http://forumnepali.com/index.php?action=register2: file_get_contents(http://www.smfpersonal.net/news/adk_2.0rc3-1.txt) [<a href='function.file-get-contents'>function.file-get-contents</a>]: failed to open stream: Connection refusedFile: /home/forumnep/public_html/Sources/Subs-adkfunction.php
Line: 174
Guest
217.23.13.10
June 08, 2010, 11:41:59 AM
<div align="left" style="font-size: 0.7em;"> <strong>'.$txt['page_view_adk'].'</strong> '.$context['page_view_content']['view'].'</div>
Thank you.
(The Adk system is amazing, great job.)
'title' => $txt['foro'],
Saludos!!!
Tengo una pregunta muy simple, hoy instale el mod Adk Portal 2.0 RC3-2 porque realmente me gusto cuando lo instale hace un tiempo pero lo tuve que desintalar debido a que no existia ninguna paginacion en las noticias, pero veo que en su pagina principal el bloque de noticias si tiene paginacion pero mi instalacion carece de una paginacion aunque indique en la administracion que puedo introducir la cantidad de noticias por paginas [Number of news per page]
Aqui les dejo una imagenes para ver si me pueden ayudar
(http://newmodcity.com/imagez/sample1.jpg)
(http://newmodcity.com/imagez/sample2.jpg)
Espero que me hayan entendido, muchas gracias!!!
Y gracias por compartir tan fabulosa integracion al SMF!
yeah... it's real
Please, attach your Subs-adkblocks.php
mysql_free_result($quest);
echo'<br />';
echo'<div align="right" class="smalltext">'.$enlace.'</div>';
search:Code: [Select]mysql_free_result($quest);
and add beforeCode: [Select]echo'<br />';
echo'<div align="right" class="smalltext">'.$enlace.'</div>';
Greetings.
$paginas = $contador;
$por_pagina = $limit;
$paginado = 0;
while ($paginas >= $por_pagina):
$paginas = $paginas - $por_pagina;
$paginado++;
endwhile;
if ($paginas != 0)
$paginado++;
if ($listar == 1)
{
$antes = 1;
$despues = 2;
$primero = "|<- ";
$fin = '<a href="index.php?pag='.$paginado.'" title="'.$txt['ultima_pagina'].'"> ->|</a>';
$anterior = " <<< ";
$siguiente = '<a href="index.php?pag='.$despues.'" title="'.$txt['pagina_siguiente'].'"> >>> </a>';
}
elseif ($listar == $paginado)
{
$antes = $paginado -1;
$despues = $paginado;
$primero = '<a href="index.php?pag=1" title="'.$txt['1_pag'].'">|<- </a>';
$fin = " ->|";
$anterior = '<a href="index.php?pag='.$antes.'" title="'.$txt['ant_pag'].'"> <<< </a>';
$siguiente = " >>> ";
}
else
{
$antes = $listar - 1;
$despues = $listar + 1;
$primero = '<a href="index.php?pag=1" title="'.$txt['1_pag'].'">|<- </a>';
$fin = '<a href="index.php?pag='.$paginado.'" title="'.$txt['ultima_pagina'].'"> ->|</a>';
$anterior = '<a href="index.php?pag='.$antes.'" title="'.$txt['ant_pag'].'"> <<< </a>';
$siguiente = '<a href="index.php?pag='.$despues.'" title="'.$txt['pagina_siguiente'].'"> >>> </a>';
}
if ($contador >= $limit)
{
$enlace = $primero.' '.$anterior;
$enlace .='
<select onchange=\'location.href=this.options[selectedIndex].value\' name="pageselect">';
for ($i = 1; $i <= $paginado; $i++)
{
if($i == $listar)
$enlace .='<option value="index.php?pag="'.$i.'" selected="selected">'.$i.'</option>';
else
$enlace .='<option value="index.php?pag="'.$i.'">'.$i.'</option>';
}
$enlace.="</select>";
$enlace.=$siguiente.' '.$fin;
}
else
$enlace = '
<select onchange=\'location.href=this.options[selectedIndex].value\' name="pageselect">
<option value="index.php?pag=1" selected="selected">1</option>
</select>';
$paginas = $contador;
$por_pagina = $limit;
$paginado = 0;
while ($paginas >= $por_pagina):
$paginas = $paginas - $por_pagina;
$paginado++;
endwhile;
if ($paginas != 0)
$paginado++;
if ($contador >= $limit)
{
$enlace = '';
for ($i = 1; $i <= $paginado; $i++)
{
if($i == $listar)
$enlace .='[<strong>'.$i.'</strong>] ';
else
$enlace .='<a href="'.$scripturl.'?pag='.$i.'">'.$i.'</a> ';
}
}
else
$enlace = '
[<strong>1</strong>]';
Ok, it's time to work :P
search:Code: [Select]$paginas = $contador;
$por_pagina = $limit;
$paginado = 0;
while ($paginas >= $por_pagina):
$paginas = $paginas - $por_pagina;
$paginado++;
endwhile;
if ($paginas != 0)
$paginado++;
if ($listar == 1)
{
$antes = 1;
$despues = 2;
$primero = "|<- ";
$fin = '<a href="index.php?pag='.$paginado.'" title="'.$txt['ultima_pagina'].'"> ->|</a>';
$anterior = " <<< ";
$siguiente = '<a href="index.php?pag='.$despues.'" title="'.$txt['pagina_siguiente'].'"> >>> </a>';
}
elseif ($listar == $paginado)
{
$antes = $paginado -1;
$despues = $paginado;
$primero = '<a href="index.php?pag=1" title="'.$txt['1_pag'].'">|<- </a>';
$fin = " ->|";
$anterior = '<a href="index.php?pag='.$antes.'" title="'.$txt['ant_pag'].'"> <<< </a>';
$siguiente = " >>> ";
}
else
{
$antes = $listar - 1;
$despues = $listar + 1;
$primero = '<a href="index.php?pag=1" title="'.$txt['1_pag'].'">|<- </a>';
$fin = '<a href="index.php?pag='.$paginado.'" title="'.$txt['ultima_pagina'].'"> ->|</a>';
$anterior = '<a href="index.php?pag='.$antes.'" title="'.$txt['ant_pag'].'"> <<< </a>';
$siguiente = '<a href="index.php?pag='.$despues.'" title="'.$txt['pagina_siguiente'].'"> >>> </a>';
}
if ($contador >= $limit)
{
$enlace = $primero.' '.$anterior;
$enlace .='
<select onchange=\'location.href=this.options[selectedIndex].value\' name="pageselect">';
for ($i = 1; $i <= $paginado; $i++)
{
if($i == $listar)
$enlace .='<option value="index.php?pag="'.$i.'" selected="selected">'.$i.'</option>';
else
$enlace .='<option value="index.php?pag="'.$i.'">'.$i.'</option>';
}
$enlace.="</select>";
$enlace.=$siguiente.' '.$fin;
}
else
$enlace = '
<select onchange=\'location.href=this.options[selectedIndex].value\' name="pageselect">
<option value="index.php?pag=1" selected="selected">1</option>
</select>';
and reeplace with:Code: [Select]$paginas = $contador;
$por_pagina = $limit;
$paginado = 0;
while ($paginas >= $por_pagina):
$paginas = $paginas - $por_pagina;
$paginado++;
endwhile;
if ($paginas != 0)
$paginado++;
if ($contador >= $limit)
{
$enlace = '';
for ($i = 1; $i <= $paginado; $i++)
{
if($i == $listar)
$enlace .='[<strong>'.$i.'</strong>] ';
else
$enlace .='<a href="'.$scripturl.'?pag='.$i.'">'.$i.'</a> ';
}
}
else
$enlace = '
[<strong>1</strong>]';
lucas,
Does the image carousel get images from forum attachments? or somewhere else?
lucas,
Does the image carousel get images from forum attachments? or somewhere else?
Does anyone know where the carousel pulls the images from?
lucas,
Does the image carousel get images from forum attachments? or somewhere else?
Does anyone know where the carousel pulls the images from?
Yes, if you go to lucas support website you will know but I was reading that you have to upload all the image to a folder or put them all together in a folder and then edit a file with the name of your image and then upload it but I think your question is "If the image are parse automatically or manual?" so I think is manual right now maybe lucas will clear any doubt later.
By the way keeping in the same topic, am using the image gallery mod if I want a block to display the recent image or random image from the gallery it can be possible or not?
Also the Auto News comes without pagination right?
;)
global $context, $txt, $scripturl;
global $smcFunc;
$request = $smcFunc['db_query']('', '
SELECT mem.id_member, mem.real_name, IFNULL(mg.online_color, 0) AS online_color, IFNULL(mg.group_name, 0) AS group_name
FROM {db_prefix}members mem LEFT JOIN {db_prefix}membergroups mg ON (mem.id_group = mg.id_group)
WHERE last_login > {int:time_last_24} ORDER BY id_member',
array(
'time_last_24' => time() - 86400, // 60*60*24 = 86400s / 3600m / 24h
)
);
$context['list_last_24'] = array();
while ($row = $smcFunc['db_fetch_assoc']($request)) {
if($row['group_name'] == 0)
$row['group_name'] = $txt['who_member'];
$context['list_last_24'][] = '<a title="' . $row['group_name'] . '" href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="font-size:xx-small;' . ($row['online_color'] != '' ? ' color:' . $row['online_color'] : '') . '">' . $row['real_name'] . '</a>';
}
$smcFunc['db_free_result']($request);
$context['num_last_24'] = count($context['list_last_24']);
echo'
<p class="pminfo">';
echo implode(', ', $context['list_last_24']);
echo '</p>';
Also another problem with adk news panel is that i cant write greek language:) i mean i write something in greek and when i apply it on the portal shows it with not unsterstanble characters if you know what i mean.Bug reported ;) working in that.
In the forum i havent problem.But is something that i have to set about languages on adk portal?
Hello:)
Adk is really great but installed it today in my SMF 2.0 RC3 forum and i had this problem:
When i am going to adk portal panel to add news the spaces of Author and News Title are fine and i can write to them.But under them at the space that you have to write or copy your "news" the space goes blank and you cannot see and write anything after the page get completely connected. In the start it shows me also this space and i can write at it but when the page of forum fills cannot interact with it.
This problem is from morning when i haven't installed any other mod .......only adk...
the same problem with browser internet explorer and mozilla.
i have Adk Portal 2.0 RC4
added and a screenshoot:)
Also another problem with adk news panel is that i cant write greek language:) i mean i write something in greek and when i apply it on the portal shows it with not unsterstanble characters if you know what i mean.Bug reported ;) working in that.
In the forum i havent problem.But is something that i have to set about languages on adk portal?Hello:)
Adk is really great but installed it today in my SMF 2.0 RC3 forum and i had this problem:
When i am going to adk portal panel to add news the spaces of Author and News Title are fine and i can write to them.But under them at the space that you have to write or copy your "news" the space goes blank and you cannot see and write anything after the page get completely connected. In the start it shows me also this space and i can write at it but when the page of forum fills cannot interact with it.
This problem is from morning when i haven't installed any other mod .......only adk...
the same problem with browser internet explorer and mozilla.
i have Adk Portal 2.0 RC4
added and a screenshoot:)
It's a problem with CKEditor... I'm working to resolve it.
if you want, you can delete de CKEditor... and write in html code
Sorry for the inconvenience
Greetings
for to be honest i dont know what is CKEditor and i know almost nothing from coding:)
So i guess i have just to wait?
Also i wanted to ask you if you know if it is any way at the tab "last topic" of adkportal in the first page to show a "new" small icon next to every topic that have a new post:)
rename the folder adkportal/ckeditor to adkportal/ckeditor-
attach your Subs-adkblocks.php
on ftp server that i have the forum eh? or via options from admin panel?on FTP Sserver
It will change something in the use of adk after that?
can you explain me it a bit more detailed?
sorry that i am newbie in the use of these forums:)
Also i want to report another problem.
In adk portal have also a block with Top Posters. But i saw that when i deleted the posts of a member that had only 2 posts in my forum the adkportal on top poster block still says that this person have 2 messages:)
attached also to one of my posts the subs-adblocks.php file but dint change anything on block with topics in main portal:)??? I don't understand you
I don't understandyou...
You can add a block of...?
<?php
global $context, $scripturl, $txt, $smcFunc, $boardurl, $adkportal, $modSettings;
if(empty($limit))
$limit = $adkportal['top_poster'];
$sql = $smcFunc['db_query']('','
SELECT mem.id_member, mem.real_name, mem.avatar, mem.karma_good AS posts,
mg.online_color,
IFNULL(a.id_attach, 0) AS id_attach, a.filename, a.attachment_type
FROM {db_prefix}members AS mem
LEFT JOIN {db_prefix}attachments AS a ON (a.id_member = mem.id_member)
LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = IF(mem.id_group = 0, mem.id_post_group, mem.id_group))
ORDER BY mem.karma_good DESC
LIMIT {int:limit}',
array(
'limit' => $limit,
)
);
echo'<table style="width: 100%;">';
$context['the_array'] = array();
//Height and width avatar
$width = 50;
$height = 50;
while($row = $smcFunc['db_fetch_assoc']($sql))
$context['the_array'][] = array(
'id' => $row['id_member'],
'name' => $row['real_name'],
'avatar' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? '<img width="'.$width.'" height="'.$height.'" src="' . (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) . '" alt="" class="avatar" border="0" />' : '') : (stristr($row['avatar'], 'http://') ? '<img width="'.$width.'" height="'.$height.'"src="' . $row['avatar'] . '" alt="" class="avatar" border="0" />' : '<img width="'.$width.'" height="'.$height.'"src="' . $modSettings['avatar_url'] . '/' . $smcFunc['htmlspecialchars']($row['avatar']) . '" alt="" class="avatar" border="0" />'),
'color' => $row['online_color'],
'posts' => $row['posts'],
);
foreach($context['the_array'] AS $adkTopPoster)
{
$id_member = $adkTopPoster['id'];
if(empty($adkTopPoster['avatar']))
$avatar = '<img src="'.$boardurl.'/adkportal/images/noavatar.jpg" alt="" class="adk_avatar" />';
else
$avatar = $adkTopPoster['avatar'];
$color_online = $adkTopPoster['color'];
echo'
<tr>
<td width="21">
',$avatar,'
</td>
<td valign="middle">
<a href="'.$scripturl.'?action=profile;u='.$id_member.'" title="'.$adkTopPoster['name'].'" style="color: '.$color_online.'; font-weight: bold;">
'.substr($adkTopPoster['name'],0,13).'
</a>
<br />
<span class="smalltext"><strong>'.$txt['adk_posts'].'</strong>: '.$adkTopPoster['posts'].'</span>
</td>
</tr>';
}
echo'</table>';
Code: [Select]<?php
global $context, $scripturl, $txt, $smcFunc, $boardurl, $adkportal, $modSettings;
if(empty($limit))
$limit = $adkportal['top_poster'];
$sql = $smcFunc['db_query']('','
SELECT mem.id_member, mem.real_name, mem.avatar, mem.karma_good AS posts,
mg.online_color,
IFNULL(a.id_attach, 0) AS id_attach, a.filename, a.attachment_type
FROM {db_prefix}members AS mem
LEFT JOIN {db_prefix}attachments AS a ON (a.id_member = mem.id_member)
LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = IF(mem.id_group = 0, mem.id_post_group, mem.id_group))
ORDER BY mem.karma_good DESC
LIMIT {int:limit}',
array(
'limit' => $limit,
)
);
echo'<table style="width: 100%;">';
$context['the_array'] = array();
//Height and width avatar
$width = 50;
$height = 50;
while($row = $smcFunc['db_fetch_assoc']($sql))
$context['the_array'][] = array(
'id' => $row['id_member'],
'name' => $row['real_name'],
'avatar' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? '<img width="'.$width.'" height="'.$height.'" src="' . (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) . '" alt="" class="avatar" border="0" />' : '') : (stristr($row['avatar'], 'http://') ? '<img width="'.$width.'" height="'.$height.'"src="' . $row['avatar'] . '" alt="" class="avatar" border="0" />' : '<img width="'.$width.'" height="'.$height.'"src="' . $modSettings['avatar_url'] . '/' . $smcFunc['htmlspecialchars']($row['avatar']) . '" alt="" class="avatar" border="0" />'),
'color' => $row['online_color'],
'posts' => $row['posts'],
);
foreach($context['the_array'] AS $adkTopPoster)
{
$id_member = $adkTopPoster['id'];
if(empty($adkTopPoster['avatar']))
$avatar = '<img src="'.$boardurl.'/adkportal/images/noavatar.jpg" alt="" class="adk_avatar" />';
else
$avatar = $adkTopPoster['avatar'];
$color_online = $adkTopPoster['color'];
echo'
<tr>
<td width="21">
',$avatar,'
</td>
<td valign="middle">
<a href="'.$scripturl.'?action=profile;u='.$id_member.'" title="'.$adkTopPoster['name'].'" style="color: '.$color_online.'; font-weight: bold;">
'.substr($adkTopPoster['name'],0,13).'
</a>
<br />
<span class="smalltext"><strong>'.$txt['adk_posts'].'</strong>: '.$adkTopPoster['posts'].'</span>
</td>
</tr>';
}
echo'</table>';
;)
The database value you're trying to insert does not exist: limit
replace
if(empty($limit))
$limit = $adkportal['top_poster'];
with
$limit = 10;
<?php
global $context, $scripturl, $txt, $smcFunc, $boardurl, $adkportal, $modSettings;
if(empty($limit))
$limit = $adkportal['top_poster'];
$sql = $smcFunc['db_query']('','
SELECT mem.id_member, mem.real_name, mem.avatar, mem.karma_good AS posts,
mg.online_color,
IFNULL(a.id_attach, 0) AS id_attach, a.filename, a.attachment_type
FROM {db_prefix}members AS mem
LEFT JOIN {db_prefix}attachments AS a ON (a.id_member = mem.id_member)
LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = IF(mem.id_group = 0, mem.id_post_group, mem.id_group))
ORDER BY mem.karma_good DESC
LIMIT 5'
);
echo'<table style="width: 100%;">';
$context['the_array'] = array();
//Height and width avatar
$width = 50;
$height = 50;
while($row = $smcFunc['db_fetch_assoc']($sql))
$context['the_array'][] = array(
'id' => $row['id_member'],
'name' => $row['real_name'],
'avatar' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? '<img width="'.$width.'" height="'.$height.'" src="' . (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) . '" alt="" class="avatar" border="0" />' : '') : (stristr($row['avatar'], 'http://') ? '<img width="'.$width.'" height="'.$height.'"src="' . $row['avatar'] . '" alt="" class="avatar" border="0" />' : '<img width="'.$width.'" height="'.$height.'"src="' . $modSettings['avatar_url'] . '/' . $smcFunc['htmlspecialchars']($row['avatar']) . '" alt="" class="avatar" border="0" />'),
'color' => $row['online_color'],
'posts' => $row['posts'],
);
foreach($context['the_array'] AS $adkTopPoster)
{
$id_member = $adkTopPoster['id'];
if(empty($adkTopPoster['avatar']))
$avatar = '<img src="'.$boardurl.'/adkportal/images/noavatar.jpg" alt="" class="adk_avatar" />';
else
$avatar = $adkTopPoster['avatar'];
$color_online = $adkTopPoster['color'];
echo'
<tr>
<td width="21">
',$avatar,'
</td>
<td valign="middle">
<a href="'.$scripturl.'?action=profile;u='.$id_member.'" title="'.$adkTopPoster['name'].'" style="color: '.$color_online.'; font-weight: bold;">
'.substr($adkTopPoster['name'],0,13).'
</a>
<br />
<span class="smalltext"><strong>Karma</strong>: '.$adkTopPoster['posts'].'</span>
</td>
</tr>';
}
echo'</table>';
?>
I tested this block...
Now, It work:Code: [Select]<?php
global $context, $scripturl, $txt, $smcFunc, $boardurl, $adkportal, $modSettings;
if(empty($limit))
$limit = $adkportal['top_poster'];
$sql = $smcFunc['db_query']('','
SELECT mem.id_member, mem.real_name, mem.avatar, mem.karma_good AS posts,
mg.online_color,
IFNULL(a.id_attach, 0) AS id_attach, a.filename, a.attachment_type
FROM {db_prefix}members AS mem
LEFT JOIN {db_prefix}attachments AS a ON (a.id_member = mem.id_member)
LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = IF(mem.id_group = 0, mem.id_post_group, mem.id_group))
ORDER BY mem.karma_good DESC
LIMIT 5'
);
echo'<table style="width: 100%;">';
$context['the_array'] = array();
//Height and width avatar
$width = 50;
$height = 50;
while($row = $smcFunc['db_fetch_assoc']($sql))
$context['the_array'][] = array(
'id' => $row['id_member'],
'name' => $row['real_name'],
'avatar' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? '<img width="'.$width.'" height="'.$height.'" src="' . (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) . '" alt="" class="avatar" border="0" />' : '') : (stristr($row['avatar'], 'http://') ? '<img width="'.$width.'" height="'.$height.'"src="' . $row['avatar'] . '" alt="" class="avatar" border="0" />' : '<img width="'.$width.'" height="'.$height.'"src="' . $modSettings['avatar_url'] . '/' . $smcFunc['htmlspecialchars']($row['avatar']) . '" alt="" class="avatar" border="0" />'),
'color' => $row['online_color'],
'posts' => $row['posts'],
);
foreach($context['the_array'] AS $adkTopPoster)
{
$id_member = $adkTopPoster['id'];
if(empty($adkTopPoster['avatar']))
$avatar = '<img src="'.$boardurl.'/adkportal/images/noavatar.jpg" alt="" class="adk_avatar" />';
else
$avatar = $adkTopPoster['avatar'];
$color_online = $adkTopPoster['color'];
echo'
<tr>
<td width="21">
',$avatar,'
</td>
<td valign="middle">
<a href="'.$scripturl.'?action=profile;u='.$id_member.'" title="'.$adkTopPoster['name'].'" style="color: '.$color_online.'; font-weight: bold;">
'.substr($adkTopPoster['name'],0,13).'
</a>
<br />
<span class="smalltext"><strong>Karma</strong>: '.$adkTopPoster['posts'].'</span>
</td>
</tr>';
}
echo'</table>';
?>
'avatar' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? '<img width="'.$width.'" height="'.$height.'" src="' . (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) . '" alt="" class="avatar" border="0" />' : '') : (stristr($row['avatar'], 'http://') ? '<img width="'.$width.'" height="'.$height.'"src="' . $row['avatar'] . '" alt="" class="avatar" border="0" />' : '<img width="'.$width.'" height="'.$height.'"src="' . $modSettings['avatar_url'] . '/' . $smcFunc['htmlspecialchars']($row['avatar']) . '" alt="" class="avatar" border="0" />'),
'avatar' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? '<img width="'.$width.'" height="'.$height.'" src="' . (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) . '" alt="" class="adk_avatar" border="0" />' : '') : (stristr($row['avatar'], 'http://') ? '<img width="'.$width.'" height="'.$height.'"src="' . $row['avatar'] . '" alt="" class="adk_avatar" border="0" />' : '<img width="'.$width.'" height="'.$height.'"src="' . $modSettings['avatar_url'] . '/' . $smcFunc['htmlspecialchars']($row['avatar']) . '" alt="" class="adk_avatar" border="0" />'),
replaceCode: [Select]'avatar' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? '<img width="'.$width.'" height="'.$height.'" src="' . (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) . '" alt="" class="avatar" border="0" />' : '') : (stristr($row['avatar'], 'http://') ? '<img width="'.$width.'" height="'.$height.'"src="' . $row['avatar'] . '" alt="" class="avatar" border="0" />' : '<img width="'.$width.'" height="'.$height.'"src="' . $modSettings['avatar_url'] . '/' . $smcFunc['htmlspecialchars']($row['avatar']) . '" alt="" class="avatar" border="0" />'),
with:Code: [Select]'avatar' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? '<img width="'.$width.'" height="'.$height.'" src="' . (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) . '" alt="" class="adk_avatar" border="0" />' : '') : (stristr($row['avatar'], 'http://') ? '<img width="'.$width.'" height="'.$height.'"src="' . $row['avatar'] . '" alt="" class="adk_avatar" border="0" />' : '<img width="'.$width.'" height="'.$height.'"src="' . $modSettings['avatar_url'] . '/' . $smcFunc['htmlspecialchars']($row['avatar']) . '" alt="" class="adk_avatar" border="0" />'),
Why you don't upgrade to RC4?
I love this portal but I'm a total novice at all thisSMF version? URL?
my question is .....
Is it possible to swap the "forum" and "portal" around ie I want my main forum to show up http://www.mywebsite.com/forum/index.php and under the "home" tab
Then I would like the portal page to be the next tab saying "portal"
as I say I'm a total novice so would appreciate very clear instructions as how to edit code :-[
I changed some settings around and I keep getting the error:try uninstalling the mod and updating it.
Fatal error: require_once() [function.require]: Failed opening required '/home/judithb/public_html/forum/adkportal/blocks/menuprincipal.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/judithb/public_html/forum/Sources/Subs-adkblocks.php on line 25
I am using SMF 2.0 RC 3. How do I fix this error? Please help! Thanks in advance!
I love this portal but I'm a total novice at all this
my question is .....
Is it possible to swap the "forum" and "portal" around ie I want my main forum to show up http://www.mywebsite.com/forum/index.php and under the "home" tab
Then I would like the portal page to be the next tab saying "portal"
as I say I'm a total novice so would appreciate very clear instructions as how to edit code :-[
I love this portal but I'm a total novice at all thisSMF version? URL?
my question is .....
Is it possible to swap the "forum" and "portal" around ie I want my main forum to show up http://www.mywebsite.com/forum/index.php and under the "home" tab
Then I would like the portal page to be the next tab saying "portal"
as I say I'm a total novice so would appreciate very clear instructions as how to edit code :-[
I did. I keep getting the same error.Did you install any mod lately? Did you used to have another portal installed?
No.I've found your website in previous post... but i don't see anything bad in it.
!RFAN & MaxwellsHouse attach your Subs.php...
Sure. I'm PMing you the info.well, now i see the issue, attach your Subs-adkblocks.php
Well... upload it to rapidshare and then i'll attach yours ;)!RFAN & MaxwellsHouse attach your Subs.php...eventually found the subs.php ;D but can't attach :( - guess newbies can't post attachments ?
Well... upload it to rapidshare and then i'll attach yours ;)!RFAN & MaxwellsHouse attach your Subs.php...eventually found the subs.php ;D but can't attach :( - guess newbies can't post attachments ?
MaxwellsHouse There you go.
Now i get it, try this one... ;)
Try this one...
that's my job :P
Then, download the mod, unzip it and then upload that folder to the root of your forum.
I tested this block...
Now, It work:Code: [Select]<?php
global $context, $scripturl, $txt, $smcFunc, $boardurl, $adkportal, $modSettings;
if(empty($limit))
$limit = $adkportal['top_poster'];
$sql = $smcFunc['db_query']('','
SELECT mem.id_member, mem.real_name, mem.avatar, mem.karma_good AS posts,
mg.online_color,
IFNULL(a.id_attach, 0) AS id_attach, a.filename, a.attachment_type
FROM {db_prefix}members AS mem
LEFT JOIN {db_prefix}attachments AS a ON (a.id_member = mem.id_member)
LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = IF(mem.id_group = 0, mem.id_post_group, mem.id_group))
ORDER BY mem.karma_good DESC
LIMIT 5'
);
echo'<table style="width: 100%;">';
$context['the_array'] = array();
//Height and width avatar
$width = 50;
$height = 50;
while($row = $smcFunc['db_fetch_assoc']($sql))
$context['the_array'][] = array(
'id' => $row['id_member'],
'name' => $row['real_name'],
'avatar' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? '<img width="'.$width.'" height="'.$height.'" src="' . (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) . '" alt="" class="avatar" border="0" />' : '') : (stristr($row['avatar'], 'http://') ? '<img width="'.$width.'" height="'.$height.'"src="' . $row['avatar'] . '" alt="" class="avatar" border="0" />' : '<img width="'.$width.'" height="'.$height.'"src="' . $modSettings['avatar_url'] . '/' . $smcFunc['htmlspecialchars']($row['avatar']) . '" alt="" class="avatar" border="0" />'),
'color' => $row['online_color'],
'posts' => $row['posts'],
);
foreach($context['the_array'] AS $adkTopPoster)
{
$id_member = $adkTopPoster['id'];
if(empty($adkTopPoster['avatar']))
$avatar = '<img src="'.$boardurl.'/adkportal/images/noavatar.jpg" alt="" class="adk_avatar" />';
else
$avatar = $adkTopPoster['avatar'];
$color_online = $adkTopPoster['color'];
echo'
<tr>
<td width="21">
',$avatar,'
</td>
<td valign="middle">
<a href="'.$scripturl.'?action=profile;u='.$id_member.'" title="'.$adkTopPoster['name'].'" style="color: '.$color_online.'; font-weight: bold;">
'.substr($adkTopPoster['name'],0,13).'
</a>
<br />
<span class="smalltext"><strong>Karma</strong>: '.$adkTopPoster['posts'].'</span>
</td>
</tr>';
}
echo'</table>';
?>
check again with this block.Thanks, and how to set the avatar to 50 x 50? :)
http://www.smfpersonal.net/downloads.html;sa=view;down=162
delete all class="avatar"
^^ okay
hey, i want immediate help :(
i tried to uninstall the ADk portal...i received errors while doing it.. i uninstalled it and then check it manually for errors... i found no code error.. i mean each file to be modified was perfectly modified...
but even after that i was receiving error in Load.php
i re-checked it but there was no problem..
then i decided to remove the forum and install it again and apply my old database on it...
i did it... but now m rcving this error:
Fatal error: Call to undefined function loadColpaseAdkportal() in /home/amigo/public_html/Sources/Load.php(2083) : eval()'d code on line 79
please help me :(
i think there is some problem in db now
I don't view your forum.... Guests can't view it :PUser: Test
<file name="$sourcedir/Subs-BoardIndex.php"> - תקלה
<operation>
<search position="replace"><![CDATA[
'href' => $scripturl . '#c' . $row_board['id_cat'],
]]></search>
<add><![CDATA[
'href' => $scripturl . '?action=forum#c' . $row_board['id_cat'],
]]></add>
</operation>
</file>
<file name="$sourcedir/BoardIndex.php">
<operation>
<search position="before"><![CDATA[
$context['canonical_url'] = $scripturl;
]]></search>
<add><![CDATA[
global $adkportal;
if($adkportal['adk_enable'] == 1)
$context['linktree'][] = array(
'url' => $scripturl . '?action=forum',
'name' => $txt['foro']
);
]]></add>
</operation>
</file>
<file name="$sourcedir/Recent.php"> - תקלה - לשנות #C
<operation> - נערך אע"פ שיש תקלה
<search position="replace"><![CDATA[
'url' => $scripturl . '#c' . (int) $_REQUEST['c'],
]]></search>
<add><![CDATA[
'url' => $scripturl . '?action=forum#c' . (int) $_REQUEST['c'],
]]></add>
</operation>
<operation> - לא נערך כלל
<search position="replace"><![CDATA[
'href' => $scripturl . '#c' . $row['id_cat'],
'link' => '<a href="' . $scripturl . '#c' . $row['id_cat'] . '">' . $row['cname'] . '</a>'
]]></search>
<add><![CDATA[
'href' => $scripturl . '?action=forum#c' . $row['id_cat'],
'link' => '<a href="' . $scripturl . '?action=forum#c' . $row['id_cat'] . '">' . $row['cname'] . '</a>'
]]></add>
</operation>
</file>
<file name="$sourcedir/Load.php"> - תקלה - לשנות #C
<operation>
<search position="replace"><![CDATA[
'url' => $scripturl . '#c' . $board_info['cat']['id'],
]]></search>
<add><![CDATA[
'url' => $scripturl . '?action=forum#c' . $board_info['cat']['id'],
]]></add>
</operation>
</file>
i waited for so long.... but u did not replied to this :(
plzz
I don't view your forum.... Guests can't view it :PUser: Test
ww: test4
Giovannie_1, If you want, you can upgrade to 2.0 Rc3-2 and after that, upgrade to 2.0 RC4..
The packages have the upgrade, and You don't lose anything.
Ok, I will do it right now. :)
Hmm, If I will upgrade to 3-2 first, it says: There are no installation defined action.
Can I upgrade from 3-1 to 4?No, it's fixed. Now it's ok. I got 4 now... But I still have these avatar issues..nvm :)
http://solar-xl.nl/forum/index.php
what abput me :(?
http://www.simplemachines.org/community/index.php?topic=369147.msg2786622#msg2786622
its a must have :O
can u provide me any block code for theme changer??
Working in that
oh cool and good portal... :D
in blocks i see "???"
i change database to utf8, but it's not work :(
http://pjn-il.com
thanx!
Let's hope so, it's on my highest wishlist for now :)Quotei waited for so long.... but u did not replied to this :(
plzz
in your index.template.php, search:
loadColpaseAdkportal();
and delete itI don't view your forum.... Guests can't view it :PUser: Test
ww: test4
ok ;) Good point, I will work in this one.
You should know that Adk Portal 2.0 RC5 will be released in the next days... and I'm not sure if this will be added
its a must have :O
can u provide me any block code for theme changer??Working in thatoh cool and good portal... :D
THanksin blocks i see "???"
i change database to utf8, but it's not work :(
http://pjn-il.com
thanx!
I can't view your portal
Not for the moment.Ok too bad, your portal looks nicer then smfportal bit without that block? Will install smfportal instead then.
Adk 2.0 RC5 & 2.0 RC3-3 are now released ;)Great job! Although I can't use ADK 2.0 RC5.. :(
first, install... and after that, Attach the subs.php and admin.php files
Fatal error: Call to undefined function html_to_bbc() in /var/www/vhosts/solar-xl.nl/httpdocs/forum/Packages/temp/install/db_upgrade_adkportal.php on line 31
Hmm, avatars are not at the right size.. :(
Test now!Yes, thanks :)
After installing 2.0 RC5, the 'personal menu' avatar has been minimized to 50 x 50px. Before (RC4?) it had his own normal size. How can I change this back?
And as I I asked before, I would love to see all the avatars to have his own size ( http://www.simplemachines.org/community/index.php?topic=369147.msg2786977#msg2786977 )
and I'm not sure if this will be added:P
It's a pity your own forum is spanish, I can't make sense of that language, English is even a hard language for me though :P
Edit2: In my acp (admin control panel) are a few bugs I guess.. Some things are not visible I guess. I have made the following files:
Adk-Admin.dutch
Adk-Admin.dutch-utf8
Adk-Modifications.dutch
Adk-Modifications.dutch-utf8
(Just english but my forum is Dutch) and there is no result... I also have cleared the cache..
in rc3, rc4, rc5.... The avatar in the personal menu have the original size...
its a must have :O
can u provide me any block code for theme changer??Working in thatoh cool and good portal... :D
THanksin blocks i see "???"
i change database to utf8, but it's not work :(
http://pjn-il.com
thanx!
I can't view your portal
'.$txt['welcome_guest'].'
Welcome Guest
Giovannie: Test with this index.css... after that... open your Subs-adkblocks.php and remove all class="avatar"Thanks buddy! It works :)
Gokhansankar: Open your subs-adkblocks.php and search:Code: [Select]'.$txt['welcome_guest'].'
and replace with:Code: [Select]Welcome Guest
The download module is come only with adk portal, and it is in english
I'm installed the portal, but I also installed a shoutbox page and asks me where to put the Shout, the index of the forum is boardindex but for the portal?
mmm SMF Packs shoutbox is not compatible for this moment with adkportal.... It appears in the boardindex, but not in the portal:(
Also, is there any additional sources for downloading additional blocks? I'm not very computer literate and don't have a clue how to create them myself.
I am having problems with the:
Shoutbox- Does not display for anyone but an admin. Says "You are not allowed to view the Shoutbox"
The permissions for it don't appear to change at all even when I save them, but I can't seem to add or remove any groups.
Most times when I click on "Send" to use the shoutbox, it simply freshes the page instead.
You can download optional blocks on www.smfpersonal.net/downloads.html -->Adk Portal --> Blocks
check the permissions in Admin-->AdkPortal->Blocks-->Shoutbox
I have checked out that area, I meant if there were other downloads available. Maybe like a "Lastest Poll" or something.
I cannot remove any member groups or add any member groups. It's as though this is a read only. The only field I can actually edit is the Title/Description. When I hit save, it appears to have saved fine, however none of those permissions are active.
hello , all
thx for this mod
i need ask you , can you change adk portal to like this http://www.proegy.com/p24
frist page to like this It's wonderful
Adk Portal RC6 has been released ;)Nice work!
Pas filter toe: Toon alleen de fouten met hetzelfde bericht
8: Undefined index: blog
Pas filter toe: Toon alleen fouten van dit bestand
Bestand: ~/httpdocs/forum/adkportal/blocks/LastTopicsBlog.php
Regel: 41
8: Undefined variable: implode
Pas filter toe: Toon alleen fouten van dit bestand
Bestand: ~/httpdocs/forum/Sources/Subs-adkblocks.php
Regel: 618
-Auto refresh the shoutbox when someone shoutmaybe... in a next version
- enable Smileys
- Colorize the usernames like it is for Top Karma / Top Users.
SMF 2.0 RC6 out?!ADK Portal 2.0 RC6
Or ADK portal 2.0 RC6?
SMF 2.0 RC6 out?!
Or ADK portal 2.0 RC6?
SMF 2.0 RC6 out?!
Or ADK portal 2.0 RC6?
:P
SMF is now on 2.0 RC4
giovannie_1, test now
<install for="2.0 RC3">
<install for="2.0 RC3, 2.0 RC4">
<uninstall for="2.0 RC3">
<uninstall for="2.0 RC3, 2.0 RC4">
<a href="', $scripturl, '?action=profile;area=statistics;u=', $context['id_member'], '">', $txt['statPanel'], '</a>
</p>';
// If karma enabled show the members karma.
if (!empty($modSettings['karmadescmod']) && !empty($modSettings['karmalinks']))
{ if ($context['show_karmastat'])
if (!empty($modSettings['karmaisowner']) && ($context['owner']==1)) echo '
<a href="'. $scripturl . '?action=ownkarma;u=' . $context['member']['id'] . '">'.$txt['who_change_my_karma'].'</a></br>
<a href="'. $scripturl . '?action=otherkarma;u=' . $context['member']['id'] . '">'.$txt['whom_i_change_karma'].'</a>
';
elseif (empty($modSettings['karmaisowner'])) echo'
<a href="'. $scripturl . '?action=ownkarma;u=' . $context['member']['id'] . '">'.$txt['who_change_my_karma'].'</a></br>
<a href="'. $scripturl . '?action=otherkarma;u=' . $context['member']['id'] . '">'.$txt['whom_i_change_karma'].'</a>
';
elseif ($context['user']['is_admin']) echo '
<a href="'. $scripturl . '?action=ownkarma;u=' . $context['member']['id'] . '">'.$txt['who_change_my_karma'].'</a></br>
<a href="'. $scripturl . '?action=otherkarma;u=' . $context['member']['id'] . '">'.$txt['whom_i_change_karma'].'</a>
';}
elseif ($modSettings['karmaMode'] == '2')
{
if (!empty($modSettings['karmadescmod']) && !empty($modSettings['karmalinks']))
{ if ($context['show_karmastat'])
if (!empty($modSettings['karmaisowner']) && ($context['owner']==1)) echo '
<a href="'. $scripturl . '?action=ownkarma;u=' . $context['member']['id'] . '">'.$txt['who_change_my_karma'].'</a></br>
<a href="'. $scripturl . '?action=otherkarma;u=' . $context['member']['id'] . '">'.$txt['whom_i_change_karma'].'</a>
';
elseif (empty($modSettings['karmaisowner'])) echo'
<a href="'. $scripturl . '?action=ownkarma;u=' . $context['member']['id'] . '">'.$txt['who_change_my_karma'].'</a></br>
<a href="'. $scripturl . '?action=otherkarma;u=' . $context['member']['id'] . '">'.$txt['whom_i_change_karma'].'</a>
';
elseif ($context['user']['is_admin']) echo '
<a href="'. $scripturl . '?action=ownkarma;u=' . $context['member']['id'] . '">'.$txt['who_change_my_karma'].'</a></br>
<a href="'. $scripturl . '?action=otherkarma;u=' . $context['member']['id'] . '">'.$txt['whom_i_change_karma'].'</a>
';}
}
8: Undefined index: colapse_left2
Pas filter toe: Toon alleen fouten van dit bestand
Bestand: ~httpdocs/forum/Sources/Subs-adkfunction.php
Regel: 565
8: Undefined index: colapse_left2
Pas filter toe: Toon alleen fouten van dit bestand
Bestand: ~/httpdocs/forum/Sources/Subs-adkfunction.php
Regel: 557
i have a question. what do i do with x.php files like with your lastblog.php, i dunno where to put these .php files sometimes along with some .zip file that i dl here in smf.orgIf you downloaded SMF, you'll need to install it onto your website.
add in your Modifications.language.php
$txt['colapse_left2'] = '';
and clean smf cache
8: Undefined variable: user_info
Pas filter toe: Toon alleen fouten van dit bestand
Bestand: ~/forum/Themes/default/GenericMenu.template.php (summary sub template - eval?)
Regel: 420
Thanks, after that I have this problem at error log:Code: [Select]8: Undefined variable: user_info
Pas filter toe: Toon alleen fouten van dit bestand
Bestand: ~/forum/Themes/default/GenericMenu.template.php (summary sub template - eval?)
Regel: 420
Quote from: giovannie_1Thanks, after that I have this problem at error log:Code: [Select]8: Undefined variable: user_info
Pas filter toe: Toon alleen fouten van dit bestand
Bestand: ~/forum/Themes/default/GenericMenu.template.php (summary sub template - eval?)
Regel: 420
That error is not related with GenericMenu.template.php.
Activate TemplateEval to see where the error comes.
<?php
echo'
<style type="text/css">
<!--
/**
* Slideshow style rules.
*/
#featured{
width:400px;
padding-right:250px;
position:relative;
height:250px;
background:#fff;
border:5px solid #ccc;
}
#featured ul.ui-tabs-nav{
position:absolute;
top:0; left:400px;
list-style:none;
padding:0; margin:0;
width:250px;
}
#featured ul.ui-tabs-nav li{
padding:1px 0; padding-left:13px;
font-size:12px;
color:#666;
}
#featured ul.ui-tabs-nav li span{
font-size:11px; font-family:Verdana;
line-height:18px;
}
#featured .ui-tabs-panel{
width:400px; height:250px;
background:#999; position:relative;
overflow:hidden;
}
#featured .ui-tabs-hide{
display:none;
}
#featured li.ui-tabs-nav-item a{/*On Hover Style*/
display:block;
height:60px;
color:#333; background:#fff;
line-height:20px;
outline:none;
}
#featured li.ui-tabs-nav-item a:hover{
background:#f2f2f2;
}
#featured li.ui-tabs-selected{ /*Selected tab style*/
background:url(images/selected-item.gif) top left no-repeat;
}
#featured ul.ui-tabs-nav li.ui-tabs-selected a{
background:#ccc;
}
#featured ul.ui-tabs-nav li img{
float:left; margin:2px 5px;
background:#fff;
padding:2px;
border:1px solid #eee;
}
#featured .ui-tabs-panel .info{
position:absolute;
top:180px; left:0;
height:70px; width: 400px;
background: url(images/transparent-bg.png);
}
#featured .info h2{
font-size:18px; font-family:Georgia, serif;
color:#fff; padding:5px; margin:0;
overflow:hidden;
}
#featured .info p{
margin:0 5px;
font-family:Verdana; font-size:11px;
line-height:15px; color:#f0f0f0;
}
#featured .info a{
text-decoration:none;
color:#fff;
}
#featured .info a:hover{
text-decoration:underline;
}
-->
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});
</script>
<!-- Slideshow HTML -->
<div id="featured" >
<ul class="ui-tabs-nav">
<li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-1"><a href="#fragment-1"><img src="images/image1-small.jpg" alt="" /><span>15+ SITE UNDER CONSTRUCTION</span></a></li>
<li class="ui-tabs-nav-item" id="nav-fragment-2"><a href="#fragment-2"><img src="images/image2-small.jpg" alt="" /><span>20 Beautiful Long Exposure Photographs</span></a></li>
<li class="ui-tabs-nav-item" id="nav-fragment-3"><a href="#fragment-3"><img src="images/image3-small.jpg" alt="" /><span>35 Amazing Logo Designs</span></a></li>
<li class="ui-tabs-nav-item" id="nav-fragment-4"><a href="#fragment-4"><img src="images/image4-small.jpg" alt="" /><span>Create a Vintage Photograph in Photoshop</span></a></li>
</ul>
<!-- First Content -->
<div id="fragment-1" class="ui-tabs-panel" style="">
<img src="images/image1.jpg" alt="" />
<div class="info" >
<h2><a href="http://ratedxclan.net/index.php?topic=1227.0" >15+ Site under Construction</a></h2>
<p>Site is under construction, so please stay tuned for more....<a href="http://ratedxclan.net/index.php?topic=1227.0" >read more</a></p>
</div>
</div>
<!-- Second Content -->
<div id="fragment-2" class="ui-tabs-panel ui-tabs-hide" style="">
<img src="images/image2.jpg" alt="" />
<div class="info" >
<h2><a href="http://ratedxclan.net/index.php?board=18.0" >Spotted a hacker? Report Heres</a></h2>
<p>At Rated[X], we try make gaming fun for everybody. If you spotted a hacker, plese record his ip and....<a href="http://ratedxclan.net/index.php?board=18.0" >report here</a></p>
</div>
</div>
<!-- Third Content -->
<div id="fragment-3" class="ui-tabs-panel ui-tabs-hide" style="">
<img src="images/image3.jpg" alt="" />
<div class="info" >
<h2><a href="#" >35 Amazing Logo Designs</a></h2>
<p>liquam erat volutpat. Proin id volutpat nisi. Nulla facilisi. Curabitur facilisis sollicitudin ornare....<a href="#" >read more</a></p>
</div>
</div>
<!-- Fourth Content -->
<div id="fragment-4" class="ui-tabs-panel ui-tabs-hide" style="">
<img src="images/image4.jpg" alt="" />
<div class="info" >
<h2><a href="#" >Create a Vintage Photograph in Photoshop</a></h2>
<p>Quisque sed orci ut lacus viverra interdum ornare sed est. Donec porta, erat eu pretium luctus, leo augue sodales....<a href="#" >read more</a></p>
</div>
</div>
</div>';
?>
Where can I activate that? :)
@shahjr:
Why do you post in two sites?
Please compile a list of "features" because frankly smf has 6 different portals but we do not know what the advantages are to use yours. ;)
Does it have a downloads section?
Can i add custom pages?
Does it have article system?
Integrated shoutbox?
AND I am having the following error in my logs:
http://forum/index.php?8 [nofollow]: Undefined variable: implode
File: //public_html/forum/Sources/Subs-adkblocks.php
Line: 753
Hi, just installed Adk Portal and it works very well..Thank You.
There is only one issue found as follows:
The Edit function of a posted News article creates a 501 Method Not Implemented error page.
Method Not Implemented
GET to /rcfun/index.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
-Latch
Thanks!Quote from: giovannie_1Where can I activate that? :)
http://www.simplemachines.org/community/index.php?topic=290186.0
8: Undefined variable: user_info
Pas filter toe: Toon alleen fouten van dit bestand
Bestand: ~/httpdocs/forum/Themes/default/Profile.template.php
Regel: 420
function template_summary()
{
global $context, $settings, $options, $scripturl, $modSettings, $txt;
global $user_info;
giovannie_1Or replace it with:
in your file attached, search:Code: [Select]function template_summary()
{
global $context, $settings, $options, $scripturl, $modSettings, $txt;
and add after:Code: [Select]global $user_info;
function template_summary()
{
global $context, $settings, $options, $scripturl, $modSettings, $txt, $user_info;
Takes one less line and a few less letters.
function template_summary()
{
global $context, $settings, $options, $scripturl, $modSettings, $txt;
Website URL: foksyhost.com/rcfunHi, just installed Adk Portal and it works very well..Thank You.
There is only one issue found as follows:
The Edit function of a posted News article creates a 501 Method Not Implemented error page.
Method Not Implemented
GET to /rcfun/index.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
-Latch
website url?
smf version?
Adk Portal Version?
maybe... Your host not support ; and you need replace all url's ; with &:I do not understand where the semicolon would be found in a URL??
giovannie_1
in your file attached, search:Code: [Select]function template_summary()
{
global $context, $settings, $options, $scripturl, $modSettings, $txt;
and add after:Code: [Select]global $user_info;
It's the same, but I prefer my method.... maybe some mod search:Yeah that's true but if mods search that and they replace it with my code, ADK portal will be unable to automatically uninstall.Code: [Select]function template_summary()
{
global $context, $settings, $options, $scripturl, $modSettings, $txt;
and It will not found it :P
Also when I enable the shout box, I get this message in the box.
"The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@swfloridafishingforum.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log."
I would like to have my latest topic block display not only the subject but also several line of the post. Is that possible, if so how do I change it.
QuoteAND I am having the following error in my logs:
http://forum/index.php?8 [nofollow]: Undefined variable: implode
File: //public_html/forum/Sources/Subs-adkblocks.php
Line: 753
Already reported the bug, and we're working on it.
QuoteAND I am having the following error in my logs:
http://forum/index.php?8 [nofollow]: Undefined variable: implode
File: //public_html/forum/Sources/Subs-adkblocks.php
Line: 753
Already reported the bug, and we're working on it.
I getting the above error PLUS this one.
I think it might be caused by your mod,
http://www.swfloridafishingforum.com/index.php?pretty;action=forum
8: Undefined index: users_active
File: /home/swf/public_html/Themes/default/BoardIndex.template.php
Line: 451
This is the line
==>451: ', sprintf($txt['users_active'], $modSettings['lastActive']), ':<br />', implode(', ', $context['list_users_online']);
Ugh, anybody has any idea on why it doesn't install successfully?
It says it has no errors, says it has installed succesfully, but when uninstalling...everything failed.
Other mods work fine tho.
EDIT: Solved.
The development of Adk portal is going fast. :D It's time for me to test it out. :)
ADK Blog installs fine after installing ADK Portal :D
Do you need a Dutch translator?
ADK portal is really awesome! :D Quick development, awesome features, bugless install... AWESOME!!! :D Creating .htaccess and robots.txt is really easy with this mod. :D Good job! :D Do you need a Dutch translator?
I dont think any changes were made to the Subs-adkblocks.php file, looking at it and comparing it to the original that came with the mod.
Here you go and thanks again for the help with this.
echo'<div align="right">'.$txt['adk_admin_pages'].': '. $context['page_index'].'</div>';
Parse error: syntax error, unexpected T_STRING in /Sources/Subs-adkfunction.php(54) : eval()'d code on line 1I will be very grateful for solving this problem, and I care about it very much.
Hey lucas, maybe it is a good idea to make a seperate mod for the downloads system (but still including it here)?
I only installed the full Adk Portal for it's download system...which is pretty sad as it's main part isn't used.
I get what you mean ;)Hey lucas, maybe it is a good idea to make a seperate mod for the downloads system (but still including it here)?
I only installed the full Adk Portal for it's download system...which is pretty sad as it's main part isn't used.
That is the point. If you wanna use the Download system, you should use Adk portal. We will not make the separate mod.
Regards ;)
attach your Subs-adkblocks.php
Thank you for replying here is Subs.adk file
I want to auto slide my Affiliates one after one continuosly. It should loop after the last image and continue from first image.
PLease see attached pic
Hey hey hey, next questions first (lol don't mind that).
How can I remove this space?:
It's...well...not really "beautiful".
Yoshi... that space is to add an icon... www.smfpersonal.net/downloadsHere.
But, if you want, attach the Adk-Downloads.template.php
Test now!Eeh....
syntax error, unexpected T_FUNCTION
mmm test nowThat works, BUT now...everything I click on redirects me to the board index.
??? I don't view it in your forum.I temporarily disabled it for maintenance.
ok, but I can't view it to fix.I'll put it open in a moment.
Sorry, It was my error.I'll upload it in a moment.
PD: What's SMF Tools?
syntax error, unexpected T_FUNCTION
:(
... iin line?Doesn't say...
Reupload the file.... Sorry for the error, but When I edit, I can't test it.
The following file works fine.... I'm sorry for everything.Waddja say?
syntax error, unexpected T_FUNCTION
More curious.... because that file work on my localhost....Yeah I'm now gonna try again on my cleaner SMF installation.
The error log says... Nothing?
mmm....It works, but the space isn't removed :(
:P, Sorry for the multiples inconvenience :P
:P, Sorry for the multiples inconvenience :PNo problem :)
Lucas,It's probably a bug that needs fixing.
I can't find the solved of this problem.. At my forums the karma from some user is: 9 but in the Karma stats at ADK portal it's 22. How can I clear this cache?
Lucas,
I can't find the solved of this problem.. At my forums the karma from some user is: 9 but in the Karma stats at ADK portal it's 22. How can I clear this cache?
Lucas,
I can't find the solved of this problem.. At my forums the karma from some user is: 9 but in the Karma stats at ADK portal it's 22. How can I clear this cache?
are you showing karma good and karma bad separately?
ok, adkportal block counts only karma good. I added this to the bug tracker.Hello,
Hello,
What do u mean? Will this be fixed at the RC7? :)
Regards
At RC7 or RC6 which I'm currently use? :)QuoteHello,
What do u mean? Will this be fixed at the RC7? :)
Regards
Yes, It's fixed;)
RC7Ok, thanks buddy :)
RC7Ok, thanks buddy :)
great mod, thanks for making it
http://www.smfpersonal.net/index.php?project=1This means RC7? :D
All bugs and features completed ;)
We are making the latest test.Great ;D
PS: One question..... Are you yoshi? ;D :P
PS: Yes I'm Yoshi :P
Will I lose my downloads if I upgrade?
and i want to disable downloads of adk portal since it crashes with the default download manager
Please I want the PHP code for showing the richest members from SMF Shop on the Home Page, Am using SMF RC4
Yeah OMG eh, I've written my first PHP script :D *proudQuotePS: Yes I'm Yoshi :P
omg 8) :PQuoteWill I lose my downloads if I upgrade?
Of course It doesn't.
many sites would have a big problem if this happens. Even smfpersonal
both... Installation and upgrade.Kk, that's all info I need (I want to be sure lol)
:P Coming soon 8) :PComing soon: Adk Portal 2.0 RC7
If someone needs fix the shoutbox, you can view the following topic:
http://www.smfpersonal.net/support/shoutbox-doesnt-work-t1633.0.html;msg16033#msg16033
2 persons of my forums are not able to chat and see the adk shoutbox because they are behind a proxy-server. Is this the problem of their proxy-server or because of ADK? :)Probably another mod that blocks certain IPs.
All other people are able to view and chat the shoutbox. :)
Then It will work.2 persons of my forums are not able to chat and see the adk shoutbox because they are behind a proxy-server. Is this the problem of their proxy-server or because of ADK? :)Probably another mod that blocks certain IPs.
All other people are able to view and chat the shoutbox. :)
Ask them to enter the forum without proxy server and try again.
Not as far as I know...Then It will work.2 persons of my forums are not able to chat and see the adk shoutbox because they are behind a proxy-server. Is this the problem of their proxy-server or because of ADK? :)Probably another mod that blocks certain IPs.
All other people are able to view and chat the shoutbox. :)
Ask them to enter the forum without proxy server and try again.
Can I somehow enable this for proxy-users?
Not as far as I know...Then It will work.2 persons of my forums are not able to chat and see the adk shoutbox because they are behind a proxy-server. Is this the problem of their proxy-server or because of ADK? :)Probably another mod that blocks certain IPs.
All other people are able to view and chat the shoutbox. :)
Ask them to enter the forum without proxy server and try again.
Can I somehow enable this for proxy-users?
Can you post a list of your mods?
Login security may be the bad one.
And I suggest you remove your old mods to save space for new ones :)
Then I think lucas needs to check the shoutbox code.Login security may be the bad one.
And I suggest you remove your old mods to save space for new ones :)
Hmm, no.
For them the shoutbox says: 'load...' All time long. I think it a shoutbox / proxy issue.
;) :) :(
...etc, etc.Hi,
I'm testing this on my test forum, with no problems to report!! Great Portal by the way. ;) Just one thing though, can we add smilies to the shoutbox? It's the only thing I've noticed not to show when you type in the usual codes:Code: [Select];) :) :(
...etc, etc.
Will the ability to add smilies to the shoutbox be enabled in future releases?
Thanks.
Dave.
He must! Haha :P
He must! Haha :P
although it says the smf mod page was updated today.
I have been asked for testing purposes.
Is the "commitment" reffered to in the email a donation? If so, I am unable to donate, sadly, since my parents won't allow me.
Any question, askme ;)
Regards
I think the last week It will be released.
Adk portal v2.0 RC7 for SMF 2.0 RC5 & 1.1.13 has been released ;)YAY
Admin -> Adkportal -> Blocks -> Settings Default Blocks
Okie, I'm scratching my head at this one.
How do you stop guests from viewing, or even downloading files from the downloads section??
I only want registered members to have the ability to access the downloads section/be able to download anything. Is that possible?
Thanks.
Duplicate entry '0' for key 1
File: /home/deadaird/public_html/TestSite/Sources/Adk-Downloads.php
Line: 2742
Now using adk Portal (rc7)as We have Adk Blogs(1.0.3 but still shows 1.0.2)! so thought it reasonable to have both.
Now questions which dont appear anywhere and I`m anxious to find these out
1: images: where is adk collecting them from... on the portal it says random image but where? The block does not give any details apart from "included" so how does one edit it?
2: Carrousel: What is it, how does it work, what is its purpose?
3: Extreme downloads: overtakes Smf Download system whether its activated or not , I must upload any files from my own computer, whereas it would be far better to upload via the server with a link to that file
Smf Download system had that ,but as your Extreme system has overtaken that, I am not able to see any previous downloads I had available on my site. ( Might it not be prudent to rename the Tab to " Ext- Dloads " or something like that?
4: Bulk news - Package uploaded ok but where is it?? nothing in News
5: What is " included" block am I missing something
Just some things to ponder and perhaps help me with thanks,
Oh site yeah... http://www.animanon.com/Forum3 sorry no guesting or casual visitors
Hi,
Has the problem with the
Method Not Implemented
GET to /website/index.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
when trying to edit and delete pages been resolved yet as I has checked it is not a host issue.
Hi Lucas,
I have a few questions.
At 'latest replies' and 'Top Posters' the avatars has no borders,, which 'Karma' and 'latest blogs' does have.
My forums: http://solar-xl.nl/forum/index.php
2nd: at main menu, can I set a little more space between the links (index, forum etc.) ? :)
3rd: Have u been able to fix the 'shoutbox by proxy' issue? :)
4th: At 'Top posters' the space between avatars and the usernames is huge.
Thanks!
Strict Standards: require_once() [function.require-once]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Chicago' for 'CDT/-5.0/DST' instead in /home/deficie1/public_html/Sources/Subs-adkfunction.php on line 1
Parse error: syntax error, unexpected T_IF in /home/deficie1/public_html/Sources/Subs-adkfunction.php on line 1
Fatal error: Call to undefined function AdkAdmin() in .../Sources/Admin.php on line 609
I am having problems with this mod I just now got it to show the drop down menu for the mod but every time I click the options I recieve this error.Try reinstalling the mod :)QuoteFatal error: Call to undefined function AdkAdmin() in .../Sources/Admin.php on line 609
I have looked at this line and nothing in it has changed since I installed it. Not sure on what I am doing wrong but any help would be great.
Thanks,
MrBlackCat
I uninstalled the portal via the packager link but it seems like every action I take on my forum, this error get logged into my error log.
Examples:
http://www.mywebsiteurl.com/forum/index.php?action=profile
Unable to load the 'Adk-Modifications.english' language file.
http://www.mywebsiteurl.com/forum/index.php?action=pm
Unable to load the 'Adk-Modifications.english' language file.
I have manually reviewed and removed all the codes on all the affected files but still getting the same error message as above.
Please help.
I have my SMF in Norwegian and the main menu "Members" is spelled "medlemmer" i want it to say "Medlemmer" with a capital M as the rest of the links.
Also if possible it would be nice to be able to add more links in the menu block.
Hola, tengo un problema, he instaldo este mod y todo perfecto, pero cuando intento meterme en la opcion Descargar paquetes me sale una pantalla en blanco y no me deja isntalar nuevos paquetes, alguna solucion.Eehm...Spanish?
Gracias antemano.
Hi, I have a problem this mod and mounting procedures have everything perfect, but when I get in the Download package I get a blank screen and will not let me install new packages, some solution.Tried reinstalling the mod?
Thanks in advance.
RC8 Released!!!!!!!!!!
It´s possible to hide the carrousel from visitors?
it´s possible to add more than one image at once in advanced images?No, it doesn't
how can i add new formats for advanced images? and put them moving alone at carrousel?I don't understand that point....
when you add a new image to carrousel you have 4 options, none, normal (with the dragonball), with ps3, with xbox can i add more?
Ooh thanks... haven't seen that!
Is it possible to enable the Hide Tag Special Mod 3.0 (http://mods.simplemachines.org/index.php?mod=118) in the portal?
(Hide Tag Special is also from Adk-team)
I hope it's possible!
Thanks!
edit: It's already working with the mod ;) .
New version, Adk portal 2.0 RC9 compatible with SMF 2.0 y SMF 2.0 RC5
Disable blocks on certain page is important :)
Do you planed in the next relace?
But what is the page like system?Adk Portal -> MOdules -> pages.
...
Adk Portal -> MOdules -> pages.
maybe, after to release adk 2.0 final version.
...
you can edit the main menu block on Subs-adkblocks.php
If you wanna create a php block, go to Adk portal -> blocks -> Add block -> PHP
Adk portal has a potential guys! ;)
I tested it and it´s good system :)
Adk portal has a potential guys! ;)
I tested it and it´s good system :)
Thanks MaXiForum.cz
Your session timed out while posting.Please go back and try again later.
I response that in the spanish forum... it's a problem with adk blog, not with adk portal..... if you have adk blog... please modify the settings of that mod.Already said, I did not blog ADK.
The changes were in the Adk portal files..... It were many changes ;)
function adk_carrousel()
{
global $settings, $scripturl, $context, $adkportal, $boardurl, $txt, $smcFunc;
$t = $smcFunc['db_query']('','
SELECT image, url
FROM {db_prefix}adk_advanced_images
ORDER BY id DESC
LIMIT {int:limit}',
array(
'limit' => $adkportal['adv_top_image_limit'],
)
);
$adkportal['load_images_'] = array();
while($row = $smcFunc['db_fetch_assoc']($t)){
$adkportal['load_images_'][] = array(
'url' => '<a href="'.$row['url'].'"><img src="'.$row['image'].'" alt="" /></a> ',
);
}
$smcFunc['db_free_result']($t);
if(empty($adkportal['jquery_loaded']))
echo'
<script type="text/javascript" src="'.$boardurl.'/adkportal/js/jquery.js"></script>';
$adkportal['jquery_loaded'] = true;
echo'
<script src="'.$boardurl.'/adkportal/js/carousel.js" type="text/javascript"></script>
<script type="text/javascript">
// Credits: Robert Penners easing equations (http://www.robertpenner.com/easing/).
jQuery.easing[\'BounceEaseOut\'] = function(p, t, b, c, d) {
if ((t/=d) < (1/2.75)) {
return c*(7.5625*t*t) + b;
} else if (t < (2/2.75)) {
return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
} else if (t < (2.5/2.75)) {
return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
} else {
return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
}
};
jQuery(document).ready(function() {
jQuery(\'#mycarousel\').jcarousel({
easing: \'BounceEaseOut\',
animation: 1000
});
});
</script>';
echo'
<div class="adk_height_1"></div>
<div id="wrap">
<ul id="mycarousel" class="jcarousel-skin-tango">
';
foreach($adkportal['load_images_'] AS $t)
echo '
<li>'.$t['url'].'</li>';
echo'
</ul>
</div>
<div class="adk_height_1"></div>';
Table 'anotheradminforum.smf_adk_settings' doesn't exist
Adk portal wasn't able to conect to smf
Adk portal wasn't able to conect to smf
Using FTP, I transferred the files and folders from the "Adk_Portal_2.0.zip" download to the proper locations on my web server. I did the edits. I run the "install/db_install_adkportal.php" file and got the error:QuoteAdk portal wasn't able to conect to smf
If so, a FTP fail-safe would be something handy to have in the future for issues like this haha. FTPing the files took maybe 30 seconds, it wasn't that difficult :p
if(!empty($_REQUEST['action']) || !empty($_REQUEST['topic'])
if((!empty($_REQUEST['action']) && $_REQUEST['action'] != 'admin') || !empty($_REQUEST['topic'])
Exactly!!
Only these changes ;)
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in .../Themes/minimal_20rc4/index.template.php on line 82
73: // Show right to left and the character set for ease of translating.
74: echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
75: <html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
76: <head>';
77: if(function_exists('loadColpaseAdkportal'))loadColpaseAdkportal();
78: echo '
79:
80: // The ?rc3 part of this link is just here to make sure browsers dont cache it wrongly.
81: echo '
82: <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css?rc3" />';
83:
84: // Some browsers need an extra stylesheet due to bugs/compatibility issues.
85: foreach (array('ie7', 'ie6', 'webkit') as $cssfix)
86: if ($context['browser']['is_' . $cssfix])
I really like this portal, I would use it but you can not handle it Polish letters which I wrote above.
I hope that it will improve because I would love to use it too
Install the mod, after that attach the Admin.php file ;)
Thanks
please, be patient.
Done.
@megawhite
dude, your problem is that the adkportal cannot be auto installed on your theme smf4mobile-10b6
Execute Modification ./Themes/smf4mobile-10b6/Display.template.php Test failed
to fix that u will have to manually make the changes at Display.template.php on this theme folder.
follow the Manual Installation Instructions on adkportal mod page.
In the pages section what is this ?? = http://tuforo.com/index.php?page=
I dont understand why this site would be the url to my page. Please explain.
When I install this mod, I get a ton of errors in the admin.php and subs.php
Then, once I go to make the changes.. I get a large amount of errors in the code :-\
In the pages section what is this ?? = http://tuforo.com/index.php?page=
I dont understand why this site would be the url to my page. Please explain.
an example of your page.... that was removed on SMF 2
Very nice! Thank you! ;D
hmm.. nevermind, I have it working now.
The only thing that concerned me is the forum menu button. It's gone from the original menu.
I know it's in the Main Menu block, but is there anyway that I can put the forum menu button back?
Here's an example. (see attached images)
Hi,
What if youre a dummy and you managed to install ADK portal twice?
I thought I was installing it for a new theme, saw double blocks, so removed it and broke the forums. The webhost reinstalled the forums but now there were multiples of the blocks, some empty. i deleted the duplicates so now it turns out that the remaining blocks dont work, like shoutbox.
How can I fix this?
Here you go ;)
Hi,
What if youre a dummy and you managed to install ADK portal twice?
I thought I was installing it for a new theme, saw double blocks, so removed it and broke the forums. The webhost reinstalled the forums but now there were multiples of the blocks, some empty. i deleted the duplicates so now it turns out that the remaining blocks dont work, like shoutbox.
How can I fix this?
reupload the folder adkportal/blocks
tried this, when i active shoutbox, i get this error:
Parse error: syntax error, unexpected T_EXIT in /home/aquaponi/public_html/APforums/adkportal/blocks/adk_shoutbox.php on line 1
Hi,
What if youre a dummy and you managed to install ADK portal twice?
I thought I was installing it for a new theme, saw double blocks, so removed it and broke the forums. The webhost reinstalled the forums but now there were multiples of the blocks, some empty. i deleted the duplicates so now it turns out that the remaining blocks dont work, like shoutbox.
How can I fix this?
reupload the folder adkportal/blocks
tried this, when i active shoutbox, i get this error:
Parse error: syntax error, unexpected T_EXIT in /home/aquaponi/public_html/APforums/adkportal/blocks/adk_shoutbox.php on line 1
any suggestions on how to fix this?
attach your Admin.php file :)
attach your Admin.php file :)
attach your Admin.php file :)
what is your forum language?
it's rare
attach your index.php
did you install adk without any problem?
That file "index.php" does not.
The file "index.php" root . which is next to ssi.php and settings.php
Hey lucas-ruroken, any news about ADK 3.0? :)
That file "index.php" does not.
The file "index.php" root . which is next to ssi.php and settings.php
ok ok,root index.php is attached
we are working on adk 2.1 :PLol :P Any news about adk 2.1? =P
Any updates to this Mod? 2.0 was great. 2.1? :D
And, when will it be released? Thanks!
Website URL: foksyhost.com/rcfunHi, just installed Adk Portal and it works very well..Thank You.
There is only one issue found as follows:
The Edit function of a posted News article creates a 501 Method Not Implemented error page.
Method Not Implemented
GET to /rcfun/index.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
-Latch
website url?
smf version?
Adk Portal Version?
SMF Version: 1.1.12
Adk Portal Version: 2.0 RC3-3
thanks! it's working great so far :)
i have a question: why are for example administrator not red colored at the shoutbox?
Hey guys,
I had the same problem as someone a few pages ago. They had double blocks showing up on the main page. Here's a link to what it looks like:
http://img845.imageshack.us/img845/667/stufft.jpg
Is there a fix? Tried re-uploading the blocks folder and that was no good.
Thanks.
When trying to install ADK Portal via the Package manager, I receive a few errors for Subs.php and QueryString.php. I used the FireBrick 2.0 theme and SMF 2.0.1
Forgive me if I am lacking information, Im a bit of a nub when it comes to mods. Usually, if I receive an error, I just dont use them. However, this one has too many benefits to ignore =)
However, I can say that on a test forum, I forced the install anyway, and it seems to work just fine, regardless of the errors. With the exception of 501 errors, however I am not positive that is not on my host's end either. However, I can not help but think it is better to have it installed minus the errors, even if it works with them.
Anyone with an experience using this mod on this specific theme, or anyone with a finger to point in the proper direction, would be greatly appreciated.
'home' => array(
'title' => $txt['home'],
'href' => $scripturl,
'show' => true,
'sub_buttons' => array(
),
'is_last' => $context['right_to_left'],
),
'home' => array(
'title' => $txt['home'],
'href' => $home_url,
'show' => true,
'sub_buttons' => array(
),
'is_last' => $context['right_to_left'],
// 'target' => '_blank',
),
'forum' => array(
'title' => !empty($txt['foro']) ? $txt['foro'] : 'Forum',
'href' => $adkportal['adk_enable'] == 2 ? $scripturl : $scripturl . '?action=forum',
'show' => !empty($adkportal['adk_enable']),
'sub_buttons' => array(
),
),
'downloads' => array(
'title' => $txt['downloads'],
'href' => $scripturl . '?action=downloads',
'show' => $adkportal['download_enable'] && allowedTo('adk_downloads_view'),
'sub_buttons' => array(
),
),
// If $scripturl is set to nothing, or the SID is not defined (SSI?) just quit.
if ($scripturl == '' || !defined('SID'))
return $buffer;
/*Adk Portal Start*/
global $adkportal;
$scripturl1= str_replace("/index.php","",$scripturl);
if(!empty($adkportal['enable_pages_seo']))
{
$buffer = preg_replace('/"' . preg_quote($scripturl, '/') . '\?page=([^#"]+?)?"/e', "'\"' . \$scripturl1 . '/' . changeurlpagesAdkportal('\$1'). '\"'", $buffer);
}
$buffer = changeAdkBuffer($buffer);
if(!empty($adkportal['enable_download_seo']))
{
$buffer = preg_replace('/"' . preg_quote($scripturl, '/') . '\?action=downloads;cat=([^#"]+?);([^#"]+?)?"/e', "'\"' . \$scripturl1 . '/index.php?action=downloads;cat=\$1;\$2\"'", $buffer);
$buffer = preg_replace('/"' . preg_quote($scripturl, '/') . '\?action=downloads;cat=([^#"]+?)?"/e', "'\"' . \$scripturl1 . '/' . changeCatUrl('\$1'). '\"'", $buffer);
$buffer = preg_replace('/"' . preg_quote($scripturl, '/') . '\?action=downloads;sa=view;down=([^#"]+?)?"/e', "'\"' . \$scripturl1 . '/' . changeDownloadUrl('\$1'). '\"'", $buffer);
}
/*Adk Portal End*/
// If $scripturl is set to nothing, or the SID is not defined (SSI?) just quit.
$load = false;
if ($scripturl == '' || !defined('SID'))
return $buffer;
attach your Subs.php
$load = false;
For the QueryString.php so that it matches what it is trying to find? WHen manually added the info, without changing it, it just results in a blank page.attach your Querystring.php ;) and reuploda this Subs.php
adkportal was not installed correctyly in your forum.... I'm editing both files according with the modifications in the parse section
global $adkportal;
$scripturl1= str_replace("/index.php","",$scripturl);
if(!empty($adkportal['enable_pages_seo']))
{
$buffer = preg_replace('/"' . preg_quote($scripturl, '/') . '\?page=([^#"]+?)?"/e', "'\"' . \$scripturl1 . '/' . changeurlpagesAdkportal('\$1'). '\"'", $buffer);
}
$buffer = changeAdkBuffer($buffer);
if(!empty($adkportal['enable_download_seo']))
{
$buffer = preg_replace('/"' . preg_quote($scripturl, '/') . '\?action=downloads;cat=([^#"]+?);([^#"]+?)?"/e', "'\"' . \$scripturl1 . '/index.php?action=downloads;cat=\$1;\$2\"'", $buffer);
$buffer = preg_replace('/"' . preg_quote($scripturl, '/') . '\?action=downloads;cat=([^#"]+?)?"/e', "'\"' . \$scripturl1 . '/' . changeCatUrl('\$1'). '\"'", $buffer);
$buffer = preg_replace('/"' . preg_quote($scripturl, '/') . '\?action=downloads;sa=view;down=([^#"]+?)?"/e', "'\"' . \$scripturl1 . '/' . changeDownloadUrl('\$1'). '\"'", $buffer);
}
/*Adk Portal End*/
in the adkportal zip.thanks....hopefully it will help cos at the moment, forum looks totally screwed up. :o
hey lucas, can u help me to install google custom search into a page on adk portal?
in the adkportal zip.thanks....hopefully it will help cos at the moment, forum looks totally screwed up. :o
<div id="cse" style="width: 100%;">Loading</div>
<script src="//www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
function parseQueryFromUrl () {
var queryParamName = "p";
var search = window.location.search.substr(1);
var parts = search.split('&');
for (var i = 0; i < parts.length; i++) {
var keyvaluepair = parts[i].split('=');
if (decodeURIComponent(keyvaluepair[0]) == queryParamName) {
return decodeURIComponent(keyvaluepair[1].replace(/\+/g, ' '));
}
}
return '';
}
google.load('search', '1', {language : 'pt-BR'});
google.setOnLoadCallback(function() {
var customSearchControl = new google.search.CustomSearchControl('006414486178176156691:ciri94db3eo');
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
customSearchControl.draw('cse');
var queryFromUrl = parseQueryFromUrl();
if (queryFromUrl) {
customSearchControl.execute(queryFromUrl);
}
}, true);
</script>
<link rel="stylesheet" href="//www.google.com/cse/style/look/default.css" type="text/css" />
'layout' => array(
'title' => $txt['layout_controls'],
Add Before: 'adk_portal' => array(
'title' => !empty($txt['adk_portal']) ? $txt['adk_portal'] : 'Adk Portal',
'permission' => array('adk_portal'),
'areas' => array(
'adkadmin' => array(
'label' => !empty($txt['adk_portal']) ? $txt['adk_portal'] : 'Adk Portal',
'file' => 'Adk-Admin.php',
'function' => 'AdkAdmin',
'icon' => 'label0.png',
'permission' => array('adk_portal'),
'subsections' => array(
'view' => array(!empty($txt['adk_news_news']) ? $txt['adk_news_news'] : 'News'),
'adksettings' => array(!empty($txt['opcion_adk']) ? $txt['opcion_adk'] : 'Settings'),
'manageicons' => array(!empty($txt['adk_manage_icons']) ? $txt['adk_manage_icons'] : 'Icons'),
),
),
'blocks' => array(
'label' => $txt['blocks_settings_admin'],
'file' => 'Adk-Admin.php',
'function' => 'AdkBlocksGeneral',
'icon' => 'posts.gif',
'permission' => array('adk_portal'),
'subsections' => array(
'viewblocks' => array(!empty($txt['bloques']) ? $txt['bloques'] : 'Blocks'),
'settingsblocks' => array($txt['adk_settings_blocks']),
'newblocks' => array(!empty($txt['crear_block']) ? $txt['crear_block'] : 'Create Block'),
'uploadblock' => array(!empty($txt['adk_upload_yourBlock']) ? $txt['adk_upload_yourBlock'] : 'Upload Block'),
'createnews' => array(!empty($txt['nueva_noticia']) ? $txt['nueva_noticia'] : 'Create News'),
'shoutbox' => array(!empty($txt['adk_shout']) ? $txt['adk_shout'] : 'ShoutBox'),
),
),
'modules' => array(
'label' => !empty($txt['adk_modules_admin']) ? $txt['adk_modules_admin'] : 'Modules',
'file' => 'Adk-Modules.php',
'function' => 'AdkModules',
'icon' => 'label1.png',
'permission' => array('adk_portal'),
'subsections' => array(
'intro' => array(!empty($txt['adk_modules_intro']) ? $txt['adk_modules_intro'] : 'Intro'),
'viewadminpages' => array(!empty($txt['adk_admin_pages']) ? $txt['adk_admin_pages'] : 'Pages'),
'uploadanyimage' => array(!empty($txt['advanced_block_images']) ? $txt['advanced_block_images'] : 'Adv Images'),
'manageimagesadk' => array(!empty($txt['adk_manage_images']) ? $txt['adk_manage_images'] : 'Manage images'),
),
),
'adkdownloads' => array(
'label' => 'E. Download System',
'file' => 'Adk-Downloads.php',
'function' => 'ShowDownloadsMainAdmin',
'icon' => 'label2.png',
'subsections' => array(
'settings' => array($txt['adk_settings']),
'addcategory' => array($txt['add_category']),
'allcategories' => array($txt['categories']),
'approvedownloads' => array($txt['adk_approve']),
),
),
'adkseoadmin' => array(
'label' => $txt['seo_manage_title'],
'file' => 'Adk-Seo.php',
'function' => 'AdkSeoMain',
'icon' => 'label3.png',
'subsections' => array(
'htaccess' => array($txt['seo_create_htaccess']),
'settings' => array($txt['adk_settings']),
'robotstxt' => array($txt['seo_create_robotstxt']),
),
),
),
),
Fatal error: Call to undefined function columntop() inSources/Load.php(2169) : eval()'d code on line 18
columnbottom()
columntop()
columnleft()
columnright()
columnbottom()
<?php
echo'
<div id="cse" style="width: 100%;">Loading</div>
<script src="//www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
function parseQueryFromUrl () {
var queryParamName = "p";
var search = window.location.search.substr(1);
var parts = search.split(\'&\');
for (var i = 0; i < parts.length; i++) {
var keyvaluepair = parts[i].split(\'=\');
if (decodeURIComponent(keyvaluepair[0]) == queryParamName) {
return decodeURIComponent(keyvaluepair[1].replace(/\+/g, \' \'));
}
}
return \'\';
}
google.load(\'search\', \'1\', {language : \'pt-BR\'});
google.setOnLoadCallback(function() {
var customSearchControl = new google.search.CustomSearchControl(\'006414486178176156691:ciri94db3eo\');
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
customSearchControl.draw(\'cse\');
var queryFromUrl = parseQueryFromUrl();
if (queryFromUrl) {
customSearchControl.execute(queryFromUrl);
}
}, true);
</script>
<link rel="stylesheet" href="//www.google.com/cse/style/look/default.css" type="text/css" /> ';
?>
Does any one know how to turn off collapse columns? I got all the blocks turned off, but I want to turn off the columns too so no one can collapse them. Using current versions of SMF and ADK Portal.
#adkrcolapse, #adklcolapse{
display: none;
}
website url?sorry I just get online because a lot of work... here (http://forumparabola.com) but My friend did not accidentally delete the shoutbox how to restore it
I really like this portal, I would use it but you can not handle it Polish letters which I wrote above.
I hope that it will improve because I would love to use it too
Code: (Find) [Select]'
<head>
Code: (Replace) [Select]
<head>';
if(function_exists('loadColpaseAdkportal'))loadColpaseAdkportal();
echo
Code: (Find) [Select]
}
function template_body_below()
{
Code: (Replace) [Select]
if(function_exists('loadCTop'))loadCTop();
}
function template_body_below()
{
if(function_exists('loadCBottom'))loadCBottom();
}
function template_main_below()
{
if(function_exists('loadCTop'))loadCTop();
}
function template_body_below()
{
if(function_exists('loadCBottom'))loadCBottom();
Template Parse Error!well i will make a post on the Theme support board for more clarification.
It seems something has gone sour on the forum with the template system. This problem should only be temporary, so please come back later and try again. If you continue to see this message, please contact the administrator.
Forbiddeneveything else works perfect.. I use SMF 2.0.1
You don't have permission to access /index.php on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Thanks for taking a look at my index.templete.php, i did the as you said, replacing the ( function template_main_below()") but i got this error bellowexcuse me, just replace:QuoteTemplate Parse Error!well i will make a post on the Theme support board for more clarification.
It seems something has gone sour on the forum with the template system. This problem should only be temporary, so please come back later and try again. If you continue to see this message, please contact the administrator.
Thanks
if(function_exists('loadCTop'))loadCTop();
}
function template_body_below()
{
if(function_exists('loadCBottom'))loadCBottom();
if(function_exists('loadCTop'))loadCTop();
}
function template_main_below()
{
if(function_exists('loadCBottom'))loadCBottom();
hey, how can i remove the option to colapse the right and left column?
i mean, that two little squares that sits at the right of page?
i dont need users colapse any columns...
i know if i add that to index.css
#adkrcolapse, #adklcolapse{ display: none;}
will hide the buttons.
but I really need to remove it, to decrease the space between breadcumbs and the body.
Not for the moment.I came to this thread looking for a resolution to this problem because a board that I have a cross-RSS agreement with cannot set up an RSS block for my board even though I have one for his. Now that I have the answer to the RSS problem with ADK Portal, it's essential that this portal be dropped in favor of one with RSS capability. Just letting you know.
how to recovery shoutbox this portal ? my friend accidentally remove it in setting panel ;DIf he removed it, I guess it can't be restored.
Lucas-Rurken thank you for a great portal.Please attach subs-adkfunction.php
I am wondering if you can help me with 3 different errors that I receive in my logs.
Howcome ADK portal & ADK Blog aren't compatible with each other? I can install the Blog but the portal breaks the blog :/How exactly 'breaks' the portal the blog?
QuoteHowcome ADK portal & ADK Blog aren't compatible with each other? I can install the Blog but the portal breaks the blog :/How exactly 'breaks' the portal the blog?
I'm sorry if I forgot someone
// Action and board are both empty... BoardIndex!
if (empty($board) && empty($topic))
{
require_once($sourcedir . '/BoardIndex.php');
return 'BoardIndex';
}
//Adk Portal
global $adkportal;
// Action and board are both empty... BoardIndex!
if (empty($board) && empty($topic) && $adkportal['adk_enable'] == 1 && !isset($_REQUEST['page']))
{
require_once($sourcedir . '/Adkportal.php');
return 'Adkportal';
}
elseif (empty($board) && empty($topic) && isset($_REQUEST['page']))
{
require_once($sourcedir . '/Adk-echomodules.php');
return 'load_pages_adkportal';
}
elseif (empty($board) && empty($topic))
{
require_once($sourcedir . '/BoardIndex.php');
return 'BoardIndex';
}
// Action and board are both empty... BoardIndex!
if (empty($board) && empty($topic))
{
require_once($sourcedir . '/BoardIndex.php');
return 'BoardIndex';
}
to // Action and board are both empty... BoardIndex!
if (empty($board) && empty($topic) && isset($_REQUEST['blog']))
{
require_once($sourcedir . '/BlogAdminSettings.php');
return 'BlogMain';
}
I'm using the latest smf and the latest adk portal. I also have adk blog and adk cover post installed. They are the only mods installed.
I want to uninstall adk portal but when I go to do it I get a message saying not to. There is a failed next to subs.php
Could someone please help. I've tried their forum to no success.
Thank you
Donna
-x-
My messages in "Latest Messages" block are mysteriously desapearing.
can someone help me with that?
My messages in "Latest Messages" block are mysteriously desapearing.
can someone help me with that?
I'm using the latest smf and the latest adk portal. I also have adk blog and adk cover post installed. They are the only mods installed.
I want to uninstall adk portal but when I go to do it I get a message saying not to. There is a failed next to subs.php
Could someone please help. I've tried their forum to no success.
Thank you
Donna
-x-
Can you give me an screen?
Hi, on my site I got an error message when I tried to install this (I have 2.0.1) saying that it wouldn't install correctly because it was out of date or because it contradicted with my other packages. I have the following: Admin member list registration date, Smart Pagination, Pretty URLs, and Adk Blog. I tried installing it, there are no lasting errors or anything, it's just that it wouldn't work properly, it just was a copy of my forum page. Any help/suggestions would be appreciated.
Yep, it lets me upload to the site - it's just that a few of the tests fail upon my attempts to install.What is your website url?
@frytec.... check your settings, go to Admin -> Adkportal -> Default Settings blocks
Hi Lucas
I recently tried to install your mod and it crashed the site when I enable it. I have tried this twice in last 2-3weeks and both time the site crashed.
I tested it on my local machine using WAMP using the same database as on the live site and everything worked fine.
Could it be clashing with Pretty URLs or any other mod?
Thanks
Anurag
What's your website url? SMF 1 or SMF 2? What do you mean with "crash my site"?Site URL: http://www.sharetermpapers.com running SMF2.01.
it's rare, are you using pretty's url?Yes, I am using pretty URLs
�������ӣ
ĄŻŚŹĘĆŃÓŁ ążśźęćńół
When ADK Portal will be supporting Polish characters in blocks?
For now it's stillCode: [Select]�������ӣ
instead of:Code: [Select]ĄŻŚŹĘĆŃÓŁ ążśźęćńół
SMF 2.0.1
ADK Portal 2.0.1
MySQL charset: UTF-8 Unicode (utf8_general_ci)
I wanted to translate this mod, but I can't if my language isn't fully supported...
Can some1 help me install Adk portal pls,i've tried several times but i didn't make it.I can give you ftp access and help me.Ty
it's rare, are you using pretty's url?Yes, I am using pretty URLs
Today at 06:21:55 PM
Apply Filter: Only show the error messages of this session
Apply Filter: Only show the errors of this type Type of error: Critical
Apply Filter: Only show the error messages of this URL
http://mikedijital.us/paranormal/index.php?action=addthistopic;add=39
Apply Filter: Only show the errors with the same message
Hacking attempt...
INSERT INTO smf_adk_news (titlepage,new,autor,time) values ('THE GHOST,ON THE HORSE,......',' <img src="http://mikedijital.us/paranormal/Smileys/plasticmice/cry.gif" alt=":'(" title="Cry" class="smiley" />
( I have omitted the content of the post because it was long, but the entire content was in the error log as well )
Function: AddThisTopic
Apply Filter: Only show the errors from this file
File: /home/content/m/i/k/mikedijital/html/paranormal/Sources/Adk-Admin.php
Line: 1869
Any update on this?it's rare, are you using pretty's url?Yes, I am using pretty URLs
Ok, letme check.
I seem to have deleted my shoutbox, how to do i get it back?You need to reinstall the package, that will upgrade it. No data will be lost.
Also, when I try to patch 2.0 to 2.01 it gives me an error.
"This package is already installed, and no upgrade was found!"
Adk portal wasn't able to conect to smf
I cant get any custom blocks to work with 2.1? :'(
Awesome!
Notice: Undefined index: adk_mygaleria in /home/yourbest/public_html/Sources/Subs-Adk_Gallery.php on line 135
Notice: Undefined index: adkimages_host_title in /home/yourbest/public_html/Sources/Subs-Adk_Gallery.php on line 140
Notice: Undefined index: AdkGallery_act in /home/yourbest/public_html/Sources/Subs-Adk_Gallery.php on line 145
what error appears?Well its not showing a error when I log out anymore :o but it still fails to display polls whether Im logged in or not. It might be a bug with the theme Im using this is another site Im messing with for a little project, not my vita site. Im going to mess with some things and let you know if I still have a problem after.
Hopefully someone here can help me. The adk devs here seem active and helpful so its worth a shot :)
Is there any way to exclude certain sections from the Last Topics block?Of course... but manually.... Please tell me what is that forum
QuoteHopefully someone here can help me. The adk devs here seem active and helpful so its worth a shot :)
iap, i started to work this week :PQuoteIs there any way to exclude certain sections from the Last Topics block?Of course... but manually.... Please tell me what is that forum
Sorry for my poor english.
xtremegamers.org
hi this is the error I get when I try to use the "advanced auto news" block from you smfpersonal site
Parse error: syntax error, unexpected '>' in /home/content/68/8046868/html/gturd/Sources/Subs-adkfunction.php(2064) : eval()'d code on line 1
I will leave the block up, the site is http://www.gamerturd.com
its the last center block
and when I try to use simple ssi block like recent poll it will not show up
Ahh awesome, if you could help me add it manually I would be very greatful :D
You mean the URL to it? I included that in my other post, I couldn't post full link as it wouldn't let me (don't think I have enough posts or something)Code: [Select]xtremegamers.org
Thanks
I reverted back to adkportal 2.0.1, works great nowhi this is the error I get when I try to use the "advanced auto news" block from you smfpersonal site
Parse error: syntax error, unexpected '>' in /home/content/68/8046868/html/gturd/Sources/Subs-adkfunction.php(2064) : eval()'d code on line 1
I will leave the block up, the site is http://www.gamerturd.com
its the last center block
and when I try to use simple ssi block like recent poll it will not show up
give me an user test please.
@thecoo1est We found a problem with 2.1... with some modules..... Tonight will be release 2.1.1 security patch with this problems fixed
@stealthxxxx: attached
@thecoo1est We found a problem with 2.1... with some modules..... Tonight will be release 2.1.1 security patch with this problems fixedawesome guys, great job!
@stealthxxxx: attached
New security patch Adk Portal.
Installing new: Adk_portal_2.1.1.zip
Upgrading from 2.1 to 2.1.1: patch_for_2.1.to.2.1.1.zip
<img style="max-width: 350px;" src="image.png" alt="" class="bbc_img"/>
I`m using Adk Portal, and croatian letters are not displayed correctly in block title. Database is in UTF-8 Character Set
Inside Admin panel, in demo block preview, all looks fine.
When I type something inside Blocks, and that text have š,đ,č,ć or ž inside, after submit Block is empty! :o
Because of that, I use html character codes for croatian letters, and write Block text in HTML instead of BBC :-\
Is there a way to hide the Views or Title on a custom page?
screen? website url?
but your adk portal is not enabledportal enabled pls check again www.projectnaija.com
right.
reupload this file
http://custom.simplemachines.org/mods/index.php?mod=2255
Adk Portal 2.1.1
(http://www.smfpersonal.net/famfamfam/book_open.png) View Full Readme (English version) (http://www.smfpersonal.net/pages/adk-portal/english/readme-2.1.html)
(http://www.smfpersonal.net/famfamfam/book_open.png) Ver Full readme (Version Español) (http://www.smfpersonal.net/pages/adk-portal/espanol/readme-2.1.html)
(http://www.smfpersonal.net/famfamfam/wrench_orange.png) Adk Portal 2.1.1 for SMF ® 2.0
(http://www.smfpersonal.net/famfamfam/wrench.png) Adk Portal 2.0 RC3-3 for SMF ® 1.1.x
(http://www.smfpersonal.net/famfamfam/package_go.png) How to upgrade Adk portal to 2.1.1 or 2.0 RC3-3 (http://www.smfpersonal.net/pages/adkportal/upgrade-faq.html)
(http://www.smfpersonal.net/famfamfam/page_white_vector.png) You can visit our site (http://www.smfpersonal.net/)
(http://www.smfpersonal.net/famfamfam/money_euro.png) If you want to help us, please visit our contribute section (http://www.smfpersonal.net/about.html;sa=contribute)
(http://www.smfpersonal.net/famfamfam/phone_add.png) Or promote the portal (http://www.smfpersonal.net/about.html;sa=promote-smf)
Adk Portal uses:
* Adk Custom icons (http://www.smfpersonal.net/pages/adkportal/adk-icons.html)
* Jquery (http://jquery.com/)
* Famfamfam Icons (http://famfamfam.com/)
* Carousel adapted from Sorgalla (http://sorgalla.com/)
Enjoy it!
Adk Portal 2.1.1 © 2009-2012
uninstalled adk portal and it pretty much broke my forums. got it to the point where i could reinstalled adk portal but now i have those double left nav columns again.
http://aquaponicsinparadise.com/APforums/index.php
hmm...portal not supported UTF-8 ?Do you have any problems with the portal in your language?
Hey, can you please tell me how you managed that problem?there were no errors shown after updating from 2.0 to 2.1.1
but unfortunately, the collapse-buttons are screwed up. not clickable anymore and placement is wrong.
I sent you a PM with the url for you to know what I mean.
nevermind. I think I'll manage myself.
Hi, I'm looking to add a block on the Portal of my forums with the members who have the top credits (sort of like top posters). The credit system I use is SMFShop, but I'm not very good with coding so I wouldn't know how to do this. Is there anyone who would know how to do this? Apparently SimplePortal already has this feature, but I really love Adk Portal, so I don't want to switch. Thanks.No one?....
$buttons['admin']['sub_buttons'] += array(
function Adk_portal_add_admin_areas($adminAreas)
function Adk_portal_add_admin_areas(&$adminAreas)
Undefined index: adk_block_include
File: C:/Program Files (x86)/EasyPHP-5.4.0RC4/www/forum3/Sources/Subs-adkfunction.php
Line: 166
//Adk Portal Blocks admin
if(!empty($_REQUEST['action']) && $_REQUEST['action'] == 'admin' && !empty($_REQUEST['area']) && $_REQUEST['area'] == 'blocks')
$buffer = str_replace('<td class="windowbg adk_10" style="text-align: center;">(include)</td>','<td class="windowbg adk_10" style="text-align: center;">('.$txt['adk_block_include'].')</td>',$buffer);
//Error log compatibilty ¿?
$txt_include = !empty($txt['adk_block_include']) ? $txt['adk_block_include'] : 'Include';
//Adk Portal Blocks admin
if(!empty($_REQUEST['action']) && $_REQUEST['action'] == 'admin' && !empty($_REQUEST['area']) && $_REQUEST['area'] == 'blocks')
$buffer = str_replace('<td class="windowbg adk_10" style="text-align: center;">(include)</td>','<td class="windowbg adk_10" style="text-align: center;">('.$txt_include.')</td>',$buffer);
In Last Topics Block. I want to setting GUEST visiter can view topic title only. GUEST must logged in to topic body. How?
How will it help in SEO?
Help!hmm i once had a similar problem. well the simple way to solve this is to Uninstall the adk portal, then log into your cpanel click on phpadmin, select your database name and drop all the adk port tables. then go back and install the adk portal again. everything will come back to normal.
My forum was running fine with ADK Portal. I upgraded to SMF 2.0.2, which apparently uninstalled all of my packages. So I re-installed my mods, including ADK Portal. Now it's like I have two ADK Portals at same time!
See screenshot.
Please fix! What files do I need to give you for you to fix?
Joel
Does this portal supports default (Curve) SMF theme?
Can someone help me? I use the Adk Portal Shoutbox on my forums and I have every membergroup except guests allowed to access it. One of my Global Mods has a weird problem. He can see the shoutbox, and he can type in the bar, but when he clicks 'Shout It!', it doesn't send. He's been trying for days, and I even asked my other global mod about the problem, and he doesn't have it. Any solution? Thanks.
Hello. Can the downloading sistem in Adk Portal be modificated so that an external link could be used?
Method Not Implemented
GET to /forum/index.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
index.php?action=admin;area=adkdownloads;sa=editcategory;id=1;sesc=ecb4edfd6beef96f1d01e68f6bfdcd48
withindex.php?action=admin;area=adkdownloads;sa=editcategory&id=1;sesc=ecb4edfd6beef96f1d01e68f6bfdcd48
and it works fine.not understanding :-[
Good day,Your host has setup a PHP execution limit, there's nothing you can do about this except for contacting your host.
I'm having a problem with the download part of AdkPortal. It's a 50mb file that I need to upload but I'm getting a timeout before it's complete. I was wondering if I can change anything or upload manual and point to the zip?
thanks,
Steve
who me ? if yes then howHave you tried looking in the blocks section of the admin panel? AFAICR there was a setting somewhere around there.
I am having a problem with the Last Topics displaying.Anyone have any ideas how to fix this?
When you are NOT logged in, it will show the last 5 messages like I configured. When you login, it still displays the LAST Topics section (so it is visible) but there are no topics in it. Any idea of how to correct this so it shows latest topics when you are logged in?
Smf 2.0.3 updated ;)
Regards enik...
You have the user with two user groups?
If the permissions of the two groups are contradictory, then it will use the permissions of the parent group
Method Not Implemented
GET to /index.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
If your host has mod_security enabled, ask them to disable it.you sure that's a good thing to do?
<a href="'.$scripturl.'?action=admin;area=modules;sa=editpages;id='.$pages['id_page'].';'.$context['session_var'].'='.$context['session_id'].'" title="'.$txt['editar'].' '.$pages['titlepage'].'"><img alt="" src="'.$boardurl.'/adkportal/images/b_edit.png" /></a> - <a href="'.$scripturl.'?action=admin;area=modules;sa=deletepages;id='.$pages['id_page'].';'.$context['session_var'].'='.$context['session_id'].'" title="'.$txt['borrar'].' '.$pages['titlepage'].'"><img alt="" src="'.$boardurl.'/adkportal/images/cancel.png" /></a>
i have problems with imagesThis link might be helpful, too, as it has more information in it...:)
the images are not appear in posts after i insert the bb code,and i think it may be from adk portal
please help me
i have problems with images
the images are not appear in posts after i insert the bb code,and i think it may be from adk portal
please help me
PuckinNutz We do not have a date. But soon ...
addAdkPermissions(&$permissions);
addAdkPermissions($permissions);
In file db_install_adkportal.phpWarning gone, but still "Table 'myforum.smf_adk_settings' doesn't exist"
replace:Code: [Select]addAdkPermissions(&$permissions);
with:Code: [Select]addAdkPermissions($permissions);
The other changes were made?
No. There are no translators. :'(
yes! Since the configuration of the shoutboxI see just the option "delete all shouts message" ..
Yes, in index.php?action=adk_shoutbox or click in (http://www.skinmod.eu/adkportal/images/icon_shoutbox.png)Thanks !
li#button_forum span {
color: red;
}
enable forum blocks.
disable portal.
Add at end of file "index.css"Code: [Select]li#button_forum span {
color: red;
}
Add at end of file "index.css"Code: [Select]li#button_forum span {
color: red;
}
attach the file Subs-adkfunction.php
$change_title = CleanAdkStrings($_POST['change_title']);
Add after: $change_title = mb_convert_encoding($change_title, 'HTML-ENTITIES', 'UTF-8');
$title = CleanAdkStrings($_POST['titulo']);
Add after: $title = mb_convert_encoding($title, 'HTML-ENTITIES', 'UTF-8');
$shout_title = CleanAdkStrings($_POST['shout_title']);
Add after: $shout_title = mb_convert_encoding($shout_title, 'HTML-ENTITIES', 'UTF-8');
Adk portal 3.1 is now released!!!
i tried installing adk portal. my website is down now. Says Error 500. on asking host provider, their comment were:
continue' not in the 'loop' or 'switch' context in /home/edutainm/public_html/Sources/AdkPortal/Subs-adkfunction.php on line 1625. Please ask from smf for support.
I have SMF 2.0.14 with ADK 3.1 running fine with PHP 5.6.30 when passing to PHP 7.1 and I get this error:
PHP Fatal error: 'continue' not in the 'loop' or 'switch' context in .../Sources/AdkPortal/Subs-adkfunction.php on line 1625
Thank you in advance.
The mod is not compatible with PHP 7. You need to downgrade your hosting account to PHP 5.6.