The Joomla! Forum ™



Forum rules


Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.



Post new topic Reply to topic  [ 1292 posts ]  Go to page Previous  1 ... 37, 38, 39, 40, 41, 42, 43, 44  Next
Author Message
PostPosted: Wed Feb 03, 2010 10:33 am 
Joomla! Explorer
Joomla! Explorer

Joined: Fri Aug 19, 2005 12:12 pm
Posts: 255
Location: Out of my mind ...sometimes
@jumi407
looks like you are trying to install a gallery through Jumi. Joomla being loaded already with a JavaScript framework (ie Mootools), you'd better try first to find a gallery suiting your needs in Joomla extensions : http://extensions.joomla.org/extensions/search/gallery
because of possible inconsistency between dynamic drive JS and Mootools.

_________________
Joomla People's Portal - Mootools Group admin
http://people.joomla.org/groups/viewgro ... tools.html


Top
 Profile  
 
PostPosted: Wed Feb 03, 2010 11:30 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Mon Aug 10, 2009 8:03 pm
Posts: 4
Hi, i'm using jumi from a long time ago and it's worls perfectly. Minor issues i always be able to solving by searching the foruns, etc.

But this time i searched in every where and didn't find anything. There is:

I'm trying to improve my code in a post with jumi, to pagebreak the post in frontpage with the tag "system-readmore", but unsuccessfuly.

Here's the part of the code:

Code:
    for($i = 1; $i < $linha; $i++){
        switch ($i){
               case 1: $datainicio = $data[$i]; break;
               case 16: $status = "Closed"; break;
               default: $status = "Running"; }
        if($i >= 16) { $status = "Closed"; }
        $datafim = $data[$i];
    }

    echo "<h3>Scores from ".$datainicio." to ".$datafim."</h3>";
    echo "Status: ".$status."<br><br>";
    echo "<hr id=system-readmore />";

    #criação da tabela
    echo "<table width='30%' class=form1 align=center border=0 cellpadding=2 cellspacing=2>
        <tr align=center><td colspan='3' class='cabecalho'>Championship</td></tr>
        <tr align=center class=cabecalho><td>Pos.</td><td>Player</td><td>Pontos</td></tr>";
        $x = 1;
        while (list($key, $val) = each($pontos)){
              echo "<tr class=".strtolower($key)."><td>".$x."&#176</td><td>".$key."</td><td>".$val."</td></tr>";
              $x++;
        }


The page can be see better in here Maboju - Post: 'Etapa 8'

It's dysplay a line where is suposing to be the "Read More" link.

Thanks for the future contribution.


Top
 Profile  
 
PostPosted: Wed Feb 03, 2010 12:39 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Wed Feb 03, 2010 9:30 am
Posts: 3
I try to make phpbb last topic module that prints all statistics of post (table form, link to the frst and last post, create date, user create, number of reads and replays, name and date of last post ..)
I used NV recent topics 1.0.4 link
I installed it per the instructions from the site. works great.
to implement this for any template. I rewrite some files in the style of phpbb, leave the original files from phpbb just add these two index_body_X.html and overall_header_X.html
The problem is that when I want this last_topic.php integrated into Joomla.
I tried to insert code directly from last_topic.php in jumi, php module, custom html ... every time you publish the module I get only blank page
works only when you insert a frame, not the solution links open in a frame is not full screan
There is the possibility to insert this last_topic.php file to show in joomla?
or rewrite it to work
tnx

last_post.php
Code:
<?php
/**
* @package phpBB3
* @version $Id: index.php 9614 2009-06-18 11:04:54Z nickvergessen $
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*/


define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : 'phpbb_test/';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);

// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('viewforum');


// Assign index specific vars
$template->assign_vars(array(
   
      
   'U_MARK_FORUMS'      => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'hash=' . generate_link_hash('global') . '&amp;mark=forums') : '',
   'U_MCP'            => ($auth->acl_get('m_') || $auth->acl_getf_global('m_')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=main&amp;mode=front', true, $user->session_id) : '')
);

if ($config['rt_index'])
{
   if (!function_exists('display_recent_topics'))
   {
      include($phpbb_root_path . 'includes/functions_recenttopics.' . $phpEx);
   }
   display_recent_topics($config['rt_number'], $config['rt_page_number'], $config['rt_anti_topics'], 'recent_topics', request_var('f', 0), true);
}

// Output page

page_header($user->lang['INDEX']);

$template->set_filenames(array(
   'body' => 'index_body_X.html')
);

page_footer();

?>

at the end it call 'index_body_X.html'
Code:
<!-- INCLUDE overall_header_X.html -->
<!-- IF RECENT_TOPICS_DISPLAY --><!-- INCLUDE recent_topics_body.html --><!-- ENDIF -->

and overall_header_X.html in attach


You do not have the required permissions to view the files attached to this post.


Top
 Profile  
 
PostPosted: Wed Feb 03, 2010 7:00 pm 
Joomla! Intern
Joomla! Intern

Joined: Fri Jan 19, 2007 4:00 pm
Posts: 78
Hi,

I installed jumi plugin.

In the jumi module i put this code :
Code:
<?php require("community/SSI.php"); ?>


The website goes blank...

Whts wrong??


Top
 Profile  
 
PostPosted: Sat Feb 06, 2010 8:15 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Tue Feb 02, 2010 9:34 pm
Posts: 12
Hi,

Is there a module similar to this images scroll ?:
http://www.dynamicdrive.com/dynamicinde ... tslide.htm

I tried it but the javascript won't work with jumi...

I'm trying to find belt images scroll ... plz help


Top
 Profile  
 
PostPosted: Sat Feb 06, 2010 8:04 pm 
Joomla! Explorer
Joomla! Explorer

Joined: Fri Aug 19, 2005 12:12 pm
Posts: 255
Location: Out of my mind ...sometimes
@jumi407,
sorry, I was wrong, this dynamic drive JS script works allright with Jumi/Joomla and no conflict with mootools.
HowTo :
- copy/Paste the code provided in the Jumi component as a new item.
Code:
<script type="text/javascript">
//Specify the slider's width (in pixels)
var sliderwidth="300px"
//Specify the slider's height
var sliderheight="150px"
//Specify the slider's slide speed (larger is faster 1-10)
var slidespeed=3
//configure background color:
slidebgcolor="#EAEAEA"

//Specify the slider's images
var leftrightslide=new Array()
var finalslide=''
leftrightslide[0]='<a href="http://"><img src="js/images/ab.jpg" border=1></a>'
leftrightslide[1]='<a href="http://"><img src="js/images/ac.jpg" border=1></a>'
leftrightslide[2]='<a href="http://"><img src="js/images/ad.jpg" border=1></a>'
leftrightslide[3]='<a href="http://"><img src="js/images/ae.jpg" border=1></a>'
leftrightslide[4]='<a href="http://"><img src="js/images/af.jpg" border=1></a>'

etc ...
</script><?--Don't forget to close script tag-->

- the path to the images is specified thus :
<img src="js/images/ab.jpg" border=1>
where your images are located in a folder "images" within a folder "js",
the folder "js" being at the root of joomla site
- slider's height is set to images' height (here 150px)
- save and note this item's ID, say "4"

- then, in a jumi module, for ex.,
write *4 in the correct field
-Publish, thats it !

read carefully this to learn Jumi usage : -->http://edo.webmaster.am/jumi/1.5-usage

_________________
Joomla People's Portal - Mootools Group admin
http://people.joomla.org/groups/viewgro ... tools.html


Top
 Profile  
 
PostPosted: Tue Feb 09, 2010 3:35 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Tue Feb 09, 2010 3:19 am
Posts: 1
Hello! I'm having issues with the jumi package and am looking for some assistance. I'm trying to tie to an external java script file. When I do it works correctly in fire fox but does not work in internet explorer. I entered in the code
Code:
<html>
<head>
</head>

<body>

<script type="text/javascript" src="http://www.webdkp.com/dkp/Eonar/Suppression/remote.js"></script>

</body>
</html>


within a new record using the jumi application manager then linked an article to it. Any ideas?


Top
 Profile  
 
PostPosted: Mon Feb 15, 2010 1:43 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Mon Feb 15, 2010 1:36 am
Posts: 1
Hi everyone,

I recently experienced a problem on my site. When I searched it on Google, the description below the site had the following error:


Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /data/13/1/155/89/1318089/user/1411946/htdocs/joomla/libraries/openid/Auth/OpenID/SQLiteStore.class.php on line 4

Warning: file_get_contents(http://www.oasispark.com/) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /data/13/1/155/89/1318089/user/1411946/htdocs/joomla/libraries/openid/Auth/OpenID/SQLiteStore.class.php on line 4



I don't know what to do about it.

Will Jumi be able to help me solve this problem? Please help me!


Top
 Profile  
 
PostPosted: Mon Feb 15, 2010 1:59 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Mon Feb 15, 2010 12:48 am
Posts: 1
The "coder jumi" button does not appear in the wysiwig editor so i cannot add jumi code to articles.

what do i have to do? thankyou.


Top
 Profile  
 
PostPosted: Mon Feb 15, 2010 12:33 pm 
User avatar
Joomla! Intern
Joomla! Intern

Joined: Thu May 22, 2008 7:09 am
Posts: 90
hi, I have an email cloaking problem
I need jumi to show an email field as is, without the javascript cloaking joomla adds.
But I need it only on that page.
I fould the emailcloak.php from joomla but I don't know if that is the place to change.

Is there a command in joomla to switch email cloaking off for a certain page ?
something like this?
if url contains "mypage" then emailcloaking=off

_________________
One fine day I'll be a Joomla 'expert' !
Tornooi.net : Sports database (tournaments and camps) for Belgium and the Netherlands


Top
 Profile  
 
PostPosted: Wed Feb 24, 2010 5:11 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Mon Apr 20, 2009 4:11 pm
Posts: 18
Don't use a BOM (Byte-Order Mark) in your PHP files!

Spent too many hours wondering why a JUMI script was adding a blank line into my article if I referenced an external PHP file in my JUMI code using "include_once" or "require_once". Turns out that external file was UTF-8 with BOM on - PHP sees this as output before any of the code, thus the extra line. A friend opened and saved it in Notepad, and the problem disappeared.

What was weird though - a JUMI "module" was adding the line, until I changed the path to the included file:
include_once '/components/com_jumi/files/fileName.php'; - worked (no line)
include_once JPATH_SITE.'/components/com_jumi/files/fileName.php'; - added a line
Exact same file! But a JUMI "application" (using {jumi[*8]} to insert the app into an article) always added a line, no matter what variations I tried with the include path.

Funny I hadn't run into this before since my Dreamweaver PHP-document default seems to be set to BOM on. Would think that all of my PHP-based sites would have been cacking! (Unless it only recently got turned on?)

Anyway, hope this helps someone.


Top
 Profile  
 
PostPosted: Thu Feb 25, 2010 10:12 am 
Joomla! Fledgling
Joomla! Fledgling

Joined: Thu Feb 25, 2010 9:58 am
Posts: 1
I'm try to show a chart/graph image in my article with "jumi". i created that graph with Chartdirector. Here is the code :

<?php
// Your code here
require_once('chartdirector/lib/phpchartdir.php');
# The data for the pie chart
$data = array(1, 2, 3, 4,5);

# The labels for the pie chart
$labels = array('USIA <25', '25-34', '35-44', '45-54', '>55');

# Create a PieChart object of size 450 x 270 pixels
$c = new PieChart(450, 270);

# Set the center of the pie at (150, 100) and the radius to 80 pixels
$c->setPieSize(150, 135, 100);

# add a legend box where the top left corner is at (330, 50)
$c->addLegend(330, 60);

# modify the sector label format to show percentages only
$c->setLabelFormat('{percent}%');

# Set the pie data and the pie labels
$c->setData($data, $labels);

# Use rounded edge shading, with a 1 pixel white (FFFFFF) border
$c->setSectorStyle(RoundedEdgeShading, 0xffffff, 1);

# Output the chart
header("Content-type: image/png");
print ($c->makeChart2(PNG));
?>

But, my article just showin a garbage font, it's can't show the PNG file that output of chartdirector.

Does anyone have problem like me ?


Top
 Profile  
 
PostPosted: Sat Feb 27, 2010 3:52 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Sat Feb 28, 2009 9:57 pm
Posts: 113
Location: Stockholm, Sweden
Hello again!

This is not at all an issue with Jumi, but I guess more people out there have the same problem (and hopefully a solution):

When i add something between the jumi-tags (Jumi 2.1), for example a variable setting:
Code:
{jumi *10}
<?php
    $variable = "hello";
?>
{/jumi}

... Everything works fine and looks fine. But when i go into WYSIWYG-mode in JCE editor all the php-code is removed and I end ut with only the jumi-tags.
Code:
{jumi *10}
{/jumi}


I would like to be able to go back and fourth between WYSIWYG and "no editor" mode. Is there another editor that will do this or is there some settings of JCE to tweak (I have "HTML clean-up" turned off)?

Thankful for your help!


Top
 Profile  
 
PostPosted: Mon Mar 01, 2010 9:56 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Sat Feb 28, 2009 9:57 pm
Posts: 113
Location: Stockholm, Sweden
Sorry for bothering. I recently reinstalled JCE and the settings where reset. I hadn't noticed this.

To avoid JCE cutting away PHP in the article you have to go to
JCE Administration > Groups > [select group] > Editor parameters > Allow PHP: Yes

Hope this helps someone else. Over and out.


Top
 Profile  
 
PostPosted: Mon Mar 01, 2010 7:11 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Sun Feb 28, 2010 10:58 am
Posts: 7
Can somebody take a look at my issue?

viewtopic.php?f=470&t=493468

Thanks..


Top
 Profile  
 
PostPosted: Tue Mar 02, 2010 4:27 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast

Joined: Fri Feb 22, 2008 3:45 pm
Posts: 102
Hello,

I was curious if this would also work for menu items?

I mean I want to use the standard mod_mainmenu, but I need a menu item to go to a link depending on what is displayed in the user's browser address bar.

I need it to echo out a custom URL that gets generated by some outside code:
Code:
<?php print $get_categorylink; ?>


Will Jumi allow me to put this into the Link field of a menu item?

Thank you,
Johnathan

_________________
Luke 1:37 "For nothing will be impossible with God."
Please visit my website. Be sure to keep an open mind:
http://www.agodblessedman.com


Top
 Profile  
 
PostPosted: Tue Mar 02, 2010 5:26 pm 
Joomla! Ace
Joomla! Ace
Online

Joined: Wed Nov 05, 2008 11:28 pm
Posts: 1029
Hello dear Jumi-Fans, ;)

i want to do some rotations in a block - see here htt://php-nuke.de - with a Code-Snippet in a Jumi Block:
See the the amazon-books should rotate - each time i fetch the site i want to have new asins - and new books shown.

BTW; see see here htt://php-nuke.de - no rotation:

Whaht is wanted: the rotation in an example here http://www.1step-beyond.de and here http://www.classic-josephine.de

well but i want more. I want to show a link below the books - which leeds to a review - written by me - on my site: eg here:

http://php-nuke.de/index.php?option=com ... 7&Itemid=5
http://php-nuke.de/index.php?option=com ... 8&Itemid=7


And i want to have some links below the shown books - that link to a site where a Review (written by me) is shown. Two ways to solve: Well - we can do this with two ways

[list=]a. with a db where the ASIN and the link is stored.
b. with an array
[/list]

I want to talk about the way b. We can create a jumi-block (on the column right or left) ASINS in a Array in a module or Jumi-Block stored, these Array randomly should choose one ASIN

A string with Link and ASIN should look like the following - with 2 different ASINS:

In order to do some rotations in a block - eg with a Code-Snippet in a Jumi Block: or something else: Well how to get the amazon-books rotate - in the following way:

"each time i fetch the site i want to have new asins - and new books shown."

Whaht is wanted: the rotation in an example here http://www.1step-beyond.de and here http://www.classic-josephine.de

well but i want more. I want to show a link below the books - which leeds to a review - written by me - on my site: eg here:

http://php-nuke.de/index.php?option=com ... 7&Itemid=5
http://php-nuke.de/index.php?option=com ... 7&Itemid=7

And i want to have some links below the shown books - that link to a site where a Review (written by me) is shown.

Two ways to solve: Well - we can do this with two ways

a. with a db where the ASIN and the link is stored.
b. with an array


I want to talk about the way b. We can create a jumi-block (on the column right or left) ASINS in a Array in a module or Jumi-Block stored, these Array randomly should choose one ASIN
A string with Link and ASIN should look like the following - with 2 different ASINS


i have to create a module called:
mod_amazon.

Code:

<?xml version="1.0" encoding="utf-8"?>
<install type="module" version="1.5.0">
    <name>Amazon</name>
    <creationDate>March 2010</creationDate>
    <author>DMS</author>
  <license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
  <authorEmail>webmaster@worldwidewaiting.de</authorEmail>
  <authorUrl>www.bwforum-online.de</authorUrl>
  <version>1.0.7</version>
  <description>AMAZON</description>
    <files>
<filename module="mod_amazon">mod_amazon.php</filename>
</files>
<params>
<param name="moduleclass_sfx" type="text" default="" label="Module Class Suffix" description="PARAMMODULECLASSSUFFIX" />
</params>
</install>




i have to create a folder called modules/mod_amazon/
with the following xml and php files in

mod_amazon.xml
mod_amazon.php

to give some ASIN (rotating ) - each time i fetch the site.

the following block - mod_amazon.php


Code:
 
<?php
/**
* @version        $Id: mod_random_image.php 10381 2008-06-01 03:35:53Z pasamio $
* @package        Joomla
* @copyright    Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license        GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
$asinarr=array;

$asinarr[] = array("ASIN"=>"B002UI2QDY",
                       "Link"=>"http://....."); //Inglorious Basterds

$asinarr[] = array("ASIN"=>"B0033AGA4E",
                       "Link"=>"http://....."); //2012

// Das Array $asinarr nach obigem Muste beliebig zu erweitern

shuffle ($asinarr);

echo "Ausgesuchte ASIN: ".$asinarr[0]["ASIN"]
?>



dear Jumi-fans: can anyone help me - how to upload the files? Into the folder modules/mod_amazon/ ? or with the setup of the code in Jumi!?

Can I do this with out any FTP or shell client - can i do this through the admin area - can i do this necessary upload through the admin area of joomla

or can i use a jumi block !?


look forward to hear from you!

Question: can i do this like it is written above? Can i use a jumi-block?

Please i need your help - many many thanks

regars Joo_jesus ;)


You do not have the required permissions to view the files attached to this post.

_________________
for more than 7 years now i am a big fan of Joomla and all its great options: With Joomla you can easily creat and extend your website: see the site that offers ideas & modules - extensions.joomla.org/


Last edited by unleash_it on Sat Mar 06, 2010 8:54 am, edited 2 times in total.

Top
 Profile  
 
PostPosted: Fri Mar 05, 2010 11:42 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Tue Apr 11, 2006 9:04 pm
Posts: 32
One more question to add...
I'm using a PHP script downloaded athttp://www.bootstrike.com/PHPAJAXDomainCheck/download.php. It's a domain name checker that lets you know if a certain domain name is available. I've installed both of the required PHP files into my root directory and they run fine. When trying to include it in a Joomla article using Jumi, I see the page layout for the PHP page, but it can't connect out to the server. You can see an example at http://myathleticresume.com/index.php?option=com_content&view=article&id=10:domain-search.


Top
 Profile  
 
PostPosted: Tue Mar 09, 2010 12:47 am 
Joomla! Intern
Joomla! Intern

Joined: Mon Aug 22, 2005 10:10 am
Posts: 93
Iam trying to write a custom injection for a gallery script I have search this forum and support pages and attempted to create a file which i hope Jumi could place for me my script is very much guess work

could some look at the code and point out any major errors. I need a complex header injecting and simple html as the page content.
Code:
   <!--(E)2 Gallery Pro <head> Files-->
      <!--(E)2 Gallery Config FIle-->
           
            $doc =& JFactory::getDocument();
         $document->addCustomTag('<?php require('e2gallerypro/e3config.php');?>');
        <!--End (E)2 Gallery Config FIle-->
        <!--(E)2 Gallery Style Sheet Link-->
            $doc =& JFactory::getDocument();
            $doc->addStyleSheet( '<? echo $galleryDesign?>/design.css' );
           
         $doc =& JFactory::getDocument();
         $document->addCustomTag('<script type="text/javascript">
            var designPath="<? echo $galleryDesign?>";
            </script>');
        <!--End (E)2 Gallery Style Sheet Link-->
       
        <!--Mootools-->
                $doc =& JFactory::getDocument();
                $doc->addScript('e2gallerypro/js/mootools-1.2-core.js');
                $doc =& JFactory::getDocument();
                $doc->addScript('e2gallerypro/js/mootools-1.2-more.js');

        <!--End Mootools-->
        <!--(E)2 Gallery Javascript-->
                $doc =& JFactory::getDocument();
                $doc->addScript('e2gallerypro/js/setupvars.js');       
         
            $doc =& JFactory::getDocument();
         $document->addCustomTag('<?php require('e2gallerypro/php/jparsexml.php');?>');
               
                $doc =& JFactory::getDocument();
                $doc->addScript('e2gallerypro/js/e2gallerypro.js');   
         
        <!--End (E)2 Gallery Javascript-->
   <!--End (E)2 Gallery Pro </head> Files-->

echo('

<!--(E)2 Gallery Pro HTML-->
<div id="gallery">
  <!--Loading Bar-->
  <div id="loading">
    <div id="loadingbar"><img src="e2gallerypro/design/e2gallerypro/loading_hill.gif" width="50" height="50" alt="" id="bar" /></div>
  </div>
  <!--End Loading Bar-->
  <!--Previous Button Div-->
  <div id="previous"></div>
  <!--End Previous Button Div-->
  <!--Next Button Div-->
  <div id="next"></div>
  <!--End Next Button Div-->
  <!--Main Image Holder Div-->
  <div id="images">
    <div id="imagewrap">
      <div id="imgloader"></div>
    </div>
    <div id="imageinfo">
      <div id="infoloader"></div>
    </div>
    <div id="smallmessage"></div>
  </div>
  <!--End Main Image Holder Div-->
  <!--Thumb Box Div-->
  <div id="thumbbox">
    <div id="thumbleft"></div>
    <div id="thumbright"></div>
    <div id="thumbnails">
      <div id="thumbnailwrap"></div>
    </div>
  </div>
  <!--End Thumb Box Div-->
  <!--For Sale Box Div-->
  <div id="fsbox"></div>
  <!--End For Sale Box Div-->
  <!--Galleries Holder Div-->
  <div id="galleries">
    <div id="controls">
      <div class="right"><img src="e2gallerypro/design/e2gallerypro/gallery_view.png" alt="View Galleries"  id="opengallery" title="View Galleries" border="0" /> <img src="e2gallerypro/design/e2gallerypro/infobox.png" id="showinfo" alt="Show Photo Info" title="Show Photo Info" border="0" /> <img src="e2gallerypro/design/e2gallerypro/thumbbox.png" id="showthumbbox" alt="Show / Hide Thumbnails" title="Show / Hide Thumbnails" border="0" /></div>
      <span id="slideshow"><img src="e2gallerypro/design/e2gallerypro/play.png" alt="Play Slide Show" title="Play Slide Show" border="0" align="absmiddle" /></span> | <span id="photoNum"></span><span id="flashNum"></span><span id="qtNum"></span></div>
    <div id="galleryset"> </div>
  </div>
  <!--End Galleries Holder Div-->
  <!--Thumbnail Pop Up Holder-->
  <div id="thumbnailPopUp"></div>
  <!--End Thumbnail Pop Up Holder-->
</div>
<!--End (E)2 Gallery Pro HTML-->
 ');



Top
 Profile  
 
PostPosted: Wed Mar 10, 2010 4:06 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Wed Mar 10, 2010 4:02 pm
Posts: 1
This may have been covered 100 times - but I cannot find it.

I am trying to customize the meta tags in my jumi code for all my jumi pages. Is the a default command that overrides the global meta tags?

I put custom meta tags in the html code thats pasted into jumi - and It's there when you view source, but of course the global meta tags are there too which doesnt work.

Thanks in advance.


Top
 Profile  
 
 Post subject: Re: Cant find this...
PostPosted: Fri Mar 12, 2010 2:57 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Fri Mar 12, 2010 2:54 pm
Posts: 2
naopercatempo wrote:
Im using the jumi 2.1.0 beta3...

When i put a code into the content of an article, the render comes with <pre> tag.. is it normal? where can i change to dont <pre> my code?



How did you fix this? I keep getting <pre> tags also.


Top
 Profile  
 
PostPosted: Mon Mar 15, 2010 6:28 am 
User avatar
Joomla! Apprentice
Joomla! Apprentice

Joined: Mon Sep 10, 2007 10:47 pm
Posts: 24
Hello,
I have a very simple test php script (see below) to display a jpeg image from a MYSQL file. The script works fine if I put it outside of JUMI/Joomla and just run it as a .php file.

But if I run it in JUMI/Joomla, it displays garbage characters rather than the image "�����JFIF��`�`�����C�....'

Can a kind person please help? This has really halted development. I have made donations to the JUMI site in the past. It is probably something very simple.

The code (username/password changed)
{jumi}
<?php
error_reporting(E_ALL);
$my_table = 'imageMySQL';
$my_image = 'example.jpg';
$my_server = 'localhost';
$my_user = 'husername';
$my_pwd = 'password';
$my_name = 'testdatabase';
$my_link = mysql_connect($my_server, $my_user, $my_pwd)
or exit('Could not connect (' . mysql_errno() . '): ' . mysql_error());
$my = mysql_select_db($my_name, $my_link)
or exit('Could not select database (' . mysql_errno() . '): ' . mysql_error());
$image = file_get_contents("$my_image");
mysql_query("DROP TABLE IF EXISTS $my_table");
mysql_query("CREATE TABLE $my_table (image MEDIUMblob)");
mysql_query("INSERT INTO $my_table (image) VALUES ('".addslashes($image)."')");
$row = mysql_fetch_array(mysql_query("SELECT image FROM $my_table"));
mysql_query("DROP TABLE IF EXISTS $my_table");
header("Content-type: image/jpg");
print $row['image'];
?>
{jumi}


Top
 Profile  
 
PostPosted: Wed Mar 17, 2010 9:34 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Wed Mar 17, 2010 9:29 pm
Posts: 4
Hello,

Hopefully someone can help me with the following.

- I load a php script with jumi.
- The script calls a js function
- THe js function uses ajax to load a new php (
$.ajax({
url: formId + '.php',

I have the following problem: When i include <?php
defined('_JEXEC') OR defined('_VALID_MOS') OR die( "Direct Access Is Not Allowed" ); ?>

the script called by ajax isn't displayed and the session variable is empty. Any ideas how this can be resolved will be greatly appreciated.

Best,

Marc


Top
 Profile  
 
PostPosted: Mon Mar 22, 2010 7:46 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Mon Mar 22, 2010 7:39 pm
Posts: 1
Hi and thanks for Jumi! I am a neophyte when it comes to Joomla but I am trying so forgive if this is a simple questions. I want to add a jumi box to a highslide 'pop up' from my menu. I can see how to do this as a link but not in the menu.

I also found the discussion on adding it to an iframe which I may have to use.

I can use any format of highslide, modalizer, ninja shadowbox or whatever I can make it work in. Has anyone been able to get this to work.

Thanks,
John


Top
 Profile  
 
PostPosted: Mon Mar 22, 2010 9:56 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Thu Mar 11, 2010 6:21 am
Posts: 6
Hey Mar Haj,
found your urls on the code snippets to be a real lifesaver,thanks bro
Http://staysavers.com

_________________
http://staysavers.com/ Staysavers
Signature rules - Literal URLs Only.


Top
 Profile  
 
 Post subject: Application Issue
PostPosted: Thu Mar 25, 2010 12:39 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Sun Jan 31, 2010 7:53 pm
Posts: 8
Hello all. I have just installed Jumi 2.06 on my Joomla! 1.5.15 website (http://www.morrisleague.com). I am trying to start off with a test Jumi application in which I titled 'Hello World'. When setting up the application and putting in some php in the Custom Script box (<?php echo 'Hello World!'; ?>) everything works as correctly. I can view the application by going to http://www.morrisleague.com/index.php?o ... fileid=xxx or by linking a menu to it. The problem is once I put a path in the pathname section it ceases to work. I created hello.php which only contains the previous hello world code, and put it in the same directory as blogger.php. The Pathname section shows the exact same path as blogger.php with the excption of the php file (components/com_jumi/files/hello.php). Now when I browse the path to the application I get a 404 error.

Any ideas of what could be the problem?


Top
 Profile  
 
PostPosted: Sat Mar 27, 2010 4:50 pm 
Joomla! Fledgling
Joomla! Fledgling

Joined: Sat Mar 27, 2010 4:08 pm
Posts: 1
Hi
I installed the Jumi version 2.0.6 and everything seems to be working perfectly, except displaying the Russian characters. When I place php code containing cyrillic encoding its displays unreadable characters on the article page.
Could anyone help me to solve this problem please.


Top
 Profile  
 
PostPosted: Sat Mar 27, 2010 7:01 pm 
Joomla! Ace
Joomla! Ace
Online

Joined: Wed Nov 05, 2008 11:28 pm
Posts: 1029
hello dear joomla and jumi-fans - this is a great great thread - it is overwhelming to see such a thread. More than 1170 posters


well i run v 1.5.18 the neweset version: and i want to add some newsfeeds.
i can do this via rss-feed -the build-in-module or component.

but i guess that i can do soemthing with jumi here too:

WELL on the way to find rss-feeds i found this site here http://www.feedzilla.com/?ct=us

they offer code for a widget: can i put this in to a jumi-block:

Code:
<!-- Begin Feedzilla news widget Code -->
<script type='text/javascript' src='http://www.feedzilla.com/tools/swfobject.js'></script>
<script type='text/javascript'>
var flashvars = {id:'5927133459347',code:'flash',c:'',scroll:'v',prov:'keywords'
,cat:'IT',cat2:'Open Source',width:'170',height:'400',num_articles:'10',show_summaries:'
Yes',show_sources:'Yes',show_dates:'Yes',related_show:'No',vid:'',title:
'',title_size:'12pt',title_bold:
'Yes',keywords:'linux',url:'',headers_size:'14pt',font_size:'10pt',
font_family:'Arial',text_alignment:'Left',space:'Yes',titlecolor:
'#15aa15',fcolor:'#2200cc',desccolor:'#1b1b1b',sourcecolor:
'#008000',datecolor:'#777777',bgcolor:'#ffffff',ref:document.location.href};
var params = {scale:'noscale',salign:'lt',bgcolor:'#ffffff'};
var attributes = {};
swfobject.embedSWF('http://www.feedzilla.com/widgets/news-widget.swf', 'Feedzilla_news_widget_592713430', '170', '400', '9.0.0','',flashvars, params, attributes);
</script>
<div id='Feedzilla_container_592713430' style='text-align:center;width:170px;'><div id='Feedzilla_container2_592713430' style='text-align:center;height:400px;width:170px;border:1px solid #00232c'><div id='Feedzilla_news_widget_592713430'></div></div></div>
<!-- End Feedzilla news widget Code -->


is this possible to enter the above mentioned code into a jumi-block!? Love to hear from you


any and all help is greatly appreciated.
thx joo jesus :)

btw: Well to clear up some thing: XML/RSS Newsfeed: RSS is an XML-based format for content distribution. lots of websites offers several RSS feeds with headlines, descriptions and back links.
Well - what does that mean!? How can i add rss feeds with the news-feed - module / component in joomla. Look forward to hear from you ... cheers.

_________________
for more than 7 years now i am a big fan of Joomla and all its great options: With Joomla you can easily creat and extend your website: see the site that offers ideas & modules - extensions.joomla.org/


Top
 Profile  
 
PostPosted: Tue Mar 30, 2010 1:02 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Tue Jun 24, 2008 4:57 am
Posts: 11
Hello,

have an issue with jumi and Joomla 1.5.11

I have a script on http://www.synviron.com/index.php/compo ... case-study

If i include the jumi tag & code in an article it works fine. If I include it into the bottom module (custom module) I just see the jumi tag on my page but the tag does not get converted into code, nor does it execute.

Im using the same script in both locations.

any idea why its not working ?


Top
 Profile  
 
PostPosted: Fri Apr 09, 2010 4:37 am 
Joomla! Apprentice
Joomla! Apprentice

Joined: Mon Dec 21, 2009 1:09 pm
Posts: 44
Hey all,

Really a great extension.

I have only one problem. I like to put some new custom modules in my administrator. I like to add php in this modules.

But i am not able to use jumi for the same.

And event not getting any solution.

Please provide me the solution for this.

Thanks
Dhvani


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1292 posts ]  Go to page Previous  1 ... 37, 38, 39, 40, 41, 42, 43, 44  Next



Who is online

Users browsing this forum: No registered users and 16 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group