71
Dylian
Re: xoBile (XOOPS Mobile): troubleshooting
  • 2009/12/20 0:37

  • Dylian

  • Friend of XOOPS

  • Posts: 237

  • Since: 2007/7/21


I really have no clue of what could be wrong... Is it still working on your other server?
If yes could you compare the configuration of the two servers and post the differences here?

Greets Dylian.

BTW WURFL Redirection doesn't work in xoBile 1.2 [RTT] because to check if WURFL is uploaded i used
if(file_exists(XOOPS_URL."/modules/wurfl/xoops_version.php"))

And this should be
if(file_exists(XOOPS_ROOT_PATH."/modules/wurfl/xoops_version.php"))
(See xobile/preloads/core.php)
Sorry for this stupid mistake if you want to use WURFL for mobile phone detection please replace this line yourself.



72
Dylian
Re: xoBile (XOOPS Mobile): troubleshooting
  • 2009/12/19 11:16

  • Dylian

  • Friend of XOOPS

  • Posts: 237

  • Since: 2007/7/21


I hope this works because i really don't know where the problem comes from. So the only thing i can do is guess.

You can find the patch here:
http://www.dylian.eu/downloads/xoops.modules.patches/xobile120-patch1/

Greets Dylian.



73
Dylian
Re: xoBile (XOOPS Mobile): troubleshooting
  • 2009/12/18 23:16

  • Dylian

  • Friend of XOOPS

  • Posts: 237

  • Since: 2007/7/21


Very strange, is there someone els with this problem?

Tomorrow i'll post a patch file wich will hopfully work for you.

Greets Dylian.



74
Dylian
Re: xoBile (XOOPS Mobile): troubleshooting
  • 2009/12/16 16:28

  • Dylian

  • Friend of XOOPS

  • Posts: 237

  • Since: 2007/7/21


I realy realy realy don't know what the problem is with you'r instalation. It's seems to me everyting should work right.

Could you replace this function (in class/core.php):
function loadheader() {
    
$this->use_simulator($this->template);
    
$this->set_css($this->template);
    
$this->use_link_brackets(false); 
    if(
$GLOBALS['plugin']['plugdir'] == "system"){
        
$xoBile_text = new HAW_text($this->sitename);
    }else{
        
$xoBile_text = new HAW_text($GLOBALS['plugin']['name']);
    }
    
$xoBile_text->set_css_class("toolbar");
    
$this->add_text($xoBile_text);
}


With:
function loadheader() {
    echo(
"Template: ".$this->template);
    exit;
}


And post the output here?

Greets Dylian.

BTW. Removed your section from the request forum on my website. (please report future problems in the bug section)



75
Dylian
Re: Xoops 2.4.1 + Liaise 1.5 + Captcha = Working
  • 2009/12/13 14:04

  • Dylian

  • Friend of XOOPS

  • Posts: 237

  • Since: 2007/7/21


Updated the package (Thanks for reporting).

DOWNLOAD:http://www.dylian.eu/downloads/xoops.modules/xforms

Greets Dylian.

BTW Final version of xforms will have rewrite options (somelike in my download url)



76
Dylian
Re: xoBile (XOOPS Mobile): troubleshooting
  • 2009/12/1 15:26

  • Dylian

  • Friend of XOOPS

  • Posts: 237

  • Since: 2007/7/21


Nobody having problems? (Exept for Yurdal and LadyHacker?)
Please report all troubles you have even if they are very very small .

Greets Dylian.

BTW Yurdal send you a PM. And bumpeboy, did you fix it? Because you didn't react to my last comment...



77
Dylian
Re: news 1.64 rating system hack
  • 2009/11/24 19:36

  • Dylian

  • Friend of XOOPS

  • Posts: 237

  • Since: 2007/7/21


Add:
<input type="hidden" name="submit" value="1" />

To your code and it should work .

But with your current code the rating of the article will get lower and lower an lower instead of higher...
Maybe for thumbs up this is better:
<input type="hidden" value="6" name="rating" />

And for thumbs down:
<input type="hidden" value="4" name="rating" />


Greets Dylian.



78
Dylian
Re: accessing database from theme.html
  • 2009/11/24 1:57

  • Dylian

  • Friend of XOOPS

  • Posts: 237

  • Since: 2007/7/21


I have made a hack to do what you wan't, here's how to do it: Step 0: Download the avatarScroller package. Step 1: Upload the avatarScroller directory in the package to your XOOPS upload folder. (xoops_root/uploads) Step 2: Open xoops_root/header.php in your favorite editor and search for the line:
$xoopsTpl =& $xoTheme->template;
and replace it with:
$xoopsTpl =& $xoTheme->template;
include(
XOOPS_ROOT_PATH.'/uploads/avatarScroller/avatarScroller.php');
save/upload the edited header.php / Step 3: Place the smarty tag <{$avatar_scroller}> in your theme/template/block where you want to display the avatar scroller. NOTE: jquery is needed for this hack to work! If you dont have jquery included in your theme please open avatarScroller/avatarScroller.php and follow the instructions. Greets Dylian. BTW To change the looks of the scroller edit avatarScroller/avatarScroller.js and avatarScroller/avatarScroller.css



79
Dylian
Re: A way to modulize image manager
  • 2009/11/2 23:50

  • Dylian

  • Friend of XOOPS

  • Posts: 237

  • Since: 2007/7/21


Great module (AJAX Image manager), i made a hack so you can also use your module in TinyMCE.

You can download the hack HERE.

Instalation instructions:

This hack is only tested in XOOPS 2.4.0 FINAL!

Step 1a, download the TinyMCE ajaximagemanager hack

Step 1b, create a backup of these files:
XOOPS_data/configs/tinymce.php (Only if it exists ofcourse)
XOOPS_root/class/xoopseditor/tinymce/tinymce.php

Step 2, upload the class folder in the package to your XOOPS_root and overwrite existing files.

If you already have a custom TinyMCE configuration (XOOPS_data/configs/tinymce.php)
1. Open the TinyMCE configuration file in your favorite editor
2. Search for the ); at the end of the file and add this line before it:
"file_browser_callback" => "ajaxfilemanager",

If don't have a custom TinyMCE configuration:
1. Just upload the tinymce.php in the xoops_data/config dir of the package to your XOOPS config folder (XOOPS_data/configs)

That was all, now if you open the advanced image manager in TinyMCE (Not XOOPS image manager) you'll see a button after the URL input field, if you click it the ajaximagemanager will open.

Greets Dylian



80
Dylian
Re: Possible new way of loading language files
  • 2009/8/18 10:47

  • Dylian

  • Friend of XOOPS

  • Posts: 237

  • Since: 2007/7/21


If you do it like this you can see if a constant is undefined in the XOOPS debug.

function define_lang($name$value$case_insensitive false) { 
   if (!
defined($name)) { 
      
define($name$value$case_insensitive); 
   } 
   
$GLOBALS['xoopsLogger']->addExtra("XOOPS language => Undefined constant"$name);
}




TopTop
« 1 ... 5 6 7 (8) 9 10 11 »



Login

Who's Online

121 user(s) are online (78 user(s) are browsing Support Forums)


Members: 0


Guests: 121


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits