News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

Adk Portal

Started by lucas-ruroken, March 06, 2010, 06:19:55 AM

Previous topic - Next topic

lucas-ruroken

Hi.

Can you talk better?

Because, It's very difficult to me read in english.... ;)
Adk Portal 3.1 is coming....

Design your universe!

NanoSector

Quote from: ggman on November 26, 2010, 07:18:05 PM
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.org
If you downloaded SMF, you'll need to install it onto your website.
If you downloaded adk Portal, just install it via SMF's package manager :)

You don't need to extract the ZIP, SMF will do it for you AND install the modification on your forum! Neat, isn't it ;)
My Mods / Mod Builder - A tool to easily create mods / Blog
"I've heard from a reliable source that the Answer is 42. But, still no word on what the question is."

Rain Forest

Quote from: lucas-ruroken on November 25, 2010, 12:53:07 PM
add in your Modifications.language.php

$txt['colapse_left2'] = '';

and clean smf cache

Thanks, after that I have this problem at error log:

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

lucas-ruroken

That error is not related with Adk Portal.... and It's not on GenericMenu.template.php
Adk Portal 3.1 is coming....

Design your universe!

^HeRaCLeS^

Quote from: giovannie_1
Thanks, after that I have this problem at error log:

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.
^HeRaCLeS^
*¤×• Ni te molestes en enviarme un Mp porque el soporte lo doy solo por el foro •×¤*


SMFPersonal

Rain Forest

Quote from: ^HeRaCLeS^ on November 27, 2010, 07:38:56 PM
Quote from: giovannie_1
Thanks, after that I have this problem at error log:

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.

Where can I activate that? :)

shahjr

this is my site, www.ratedxclan.net [nofollow] which uses adk portal.

i saw this jquery slider, that i i liked from http://designm.ag/tutorials/image-rotator-css-jquery/ [nofollow]

and i copied and pasted his code. and this is my final version
http://designm.ag/tutorials/image-rotator-css-jquery/ [nofollow]
now when i create a php block and preview it, it works, on my front page, it does'nt. images wont rotate and i cant even click on other featured news.

here is my code
<?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>'
;
?>



any kind of help is really appreciated.

thanks in advance

^HeRaCLeS^

^HeRaCLeS^
*¤×• Ni te molestes en enviarme un Mp porque el soporte lo doy solo por el foro •×¤*


SMFPersonal

lucas-ruroken

Adk Portal 3.1 is coming....

Design your universe!

shahjr

Quote from: lucas-ruroken on November 28, 2010, 09:18:52 PM
@shahjr:

Why do you post in two sites?

well, in the beginning, i only posted at smfpersonal.net [nofollow], but after waiting for 3 days and no fruitful result, i thought may be somebody here can help me since smf.org [nofollow] gets more hits overall.

sorry, didnt mean any kind of disrespect, neither i meant meant any kind of double post

.Vapor

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?

^HeRaCLeS^

Quote from: Vapor33 on November 29, 2010, 09:10:19 AM
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?

yes, yes, yes and mmmmmmm yes  ;)
^HeRaCLeS^
*¤×• Ni te molestes en enviarme un Mp porque el soporte lo doy solo por el foro •×¤*


SMFPersonal

aakashif

#292
I am getting the following error in shoutbox after it says loading:
Shoutbox
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [email protected] 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.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

AND I am having the following error in my logs:
http://forum/index.php?8: Undefined variable: implode
File: //public_html/forum/Sources/Subs-adkblocks.php
Line: 753

Need assistance,
Thanks.

^HeRaCLeS^

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.
^HeRaCLeS^
*¤×• Ni te molestes en enviarme un Mp porque el soporte lo doy solo por el foro •×¤*


SMFPersonal

latch

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

lucas-ruroken

Quote from: latch on November 30, 2010, 12:36:04 AM
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

website url?
smf version?
Adk Portal Version?
Adk Portal 3.1 is coming....

Design your universe!

Rain Forest

Quote from: ^HeRaCLeS^ on November 28, 2010, 05:46:43 PM
Quote from: giovannie_1Where can I activate that? :)

http://www.simplemachines.org/community/index.php?topic=290186.0
Thanks!

It gives me this problem:

8: Undefined variable: user_info
Pas filter toe: Toon alleen fouten van dit bestand
Bestand: ~/httpdocs/forum/Themes/default/Profile.template.php
Regel: 420

lucas-ruroken

giovannie_1

in your file attached, search:

function template_summary()
{
global $context, $settings, $options, $scripturl, $modSettings, $txt;


and add after:

global $user_info;


Adk Portal 3.1 is coming....

Design your universe!

NanoSector

Quote from: lucas-ruroken on November 30, 2010, 11:48:07 AM
giovannie_1

in your file attached, search:

function template_summary()
{
global $context, $settings, $options, $scripturl, $modSettings, $txt;


and add after:

global $user_info;

Or replace it with:

function template_summary()
{
global $context, $settings, $options, $scripturl, $modSettings, $txt, $user_info;

Takes one less line and a few less letters.
My Mods / Mod Builder - A tool to easily create mods / Blog
"I've heard from a reliable source that the Answer is 42. But, still no word on what the question is."

lucas-ruroken

It's the same, but I prefer my method.... maybe some mod search:

function template_summary()
{
   global $context, $settings, $options, $scripturl, $modSettings, $txt;


and It will not found it :P

Adk Portal 3.1 is coming....

Design your universe!

Advertisement: