41
Tarik
Re: XOOPS 2.6.0 Alpha 1 Testing
  • 2013/1/10 15:29

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


nah, just did a fresh install to solve it, but there is some errors (nothing major)
not found defines

_AM_SYSTEM_MODULES_BLOCKS_ADD in C:wampwww2.6_svnmodulessystemclassmodule.php on line 618
_AM_SYSTEM_MODULES_TEMPLATES_ADD in C
:wampwww2.6_svnmodulessystemclassmodule.php on line 546
_AM_SYSTEM_MODULES_MODULE_DATA_ADD in C
:wampwww2.6_svnmodulessystemclassmodule.php on line 802


and an error while creating the files (mainfile/secure)

! ) Warning: include_once(C:wampwww2.6_svninstall/include/makedata.php) [function.include-once]: failed to open streamNo such file or directory in C:wampwww2.6_svninstallpage_tablesfill.php on line 58
Call Stack
#    Time    Memory    Function    Location
1    0.0158    710632    {main}( )    ..page_tablesfill.php:0

( ! ) Warning: include_once() [function.include]: Failed opening 'C:wampwww2.6_svninstall/include/makedata.php' for inclusion (include_path='.;C:phppear'in C:wampwww2.6_svninstallpage_tablesfill.php on line 58
Call Stack
#    Time    Memory    Function    Location
1    0.0158    710632    {main}( )    ..page_tablesfill.php:0

and btw why the icon of notification change when clicked?
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.



42
Tarik
Re: XOOPS 2.6.0 Alpha 1 Testing
  • 2013/1/9 23:47

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


every time there is a change in svn i should do a fresh install o.O?
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.



43
Tarik
Re: XOOPS 2.6.0 Alpha 1 Testing
  • 2013/1/9 23:16

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


-_- tried updating my alpha 1 from svn and got this error
( ! ) Fatal error: Class 'Xoops_Cache' not found in C:wampwww2.6classpreload.php on line 88
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.



44
Tarik
Re: Module Standardization Team - looking for volunteers
  • 2013/1/9 20:54

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


Quote:

Mamba wrote:
We have Twitter's Bootstrap included in XOOPS 2.6.0, so you can create buttons directly in Bootstrap.

See Bootstrap Buttons here


exactly what i had in mind, this will simplify things by allot and we can even just use the predefined glyphs with out the need to any media icons



45
Tarik
Re: Module Standardization Team - looking for volunteers
  • 2013/1/9 20:37

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


we could just have icons and generate buttons like this
http://www.red-team-design.com/just-another-awesome-css3-buttons



46
Tarik
Re: XOOPS 2.6.0 Alpha 1 Testing
  • 2013/1/9 20:16

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


is there any module using the new API which i can use it as start reference for developing modules for 2.6?
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.



47
Tarik
Re: XoopsFormSelect classes not shown
  • 2012/2/5 21:53

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


its not really a bug but a snippet forgotten - which is the same thing :p -
this the render function for formselect.php

function render()
    {
        
$ele_name $this->getName();
        
$ele_title $this->getTitle();
        
$ele_value $this->getValue();
        
$ele_options $this->getOptions();
        
$ret '<select size="' $this->getSize() . '"' $this->getExtra();
        if (
$this->isMultiple() != false) {
            
$ret .= ' name="' $ele_name '[]" id="' $ele_name '" title="'$ele_title'" multiple="multiple">' ;
        } else {
            
$ret .= ' name="' $ele_name '" id="' $ele_name '" title="'$ele_title'">' ;
        }
        foreach(
$ele_options as $value => $name) {
            
$ret .= '<option value="' htmlspecialchars($valueENT_QUOTES) . '"';
            if (
count($ele_value) > && in_array($value$ele_value)) {
                
$ret .= ' selected="selected"';
            }
            
$ret .= '>' $name '</option>' ;
        }
        
$ret .= '</select>';
        return 
$ret;
    }

the id , name and title are added to the select but not the class
so it should just add some little changes
function render()
    {
        
$ele_name $this->getName();
        
$ele_class $this->getClass();
        
$ele_title $this->getTitle();
        
$ele_value $this->getValue();
        
$ele_options $this->getOptions();
        
$ret '<select size="' $this->getSize() . '"' $this->getExtra();
        if (
$this->isMultiple() != false) {
            
$ret .= ' name="' $ele_name '[]" id="' $ele_name '" class="'$ele_class .'" title="'$ele_title'" multiple="multiple">' ;
        } else {
            
$ret .= ' name="' $ele_name '" id="' $ele_name '" class="'$ele_class .'"  title="'$ele_title'">' ;
        }
        foreach(
$ele_options as $value => $name) {
            
$ret .= '<option value="' htmlspecialchars($valueENT_QUOTES) . '"';
            if (
count($ele_value) > && in_array($value$ele_value)) {
                
$ret .= ' selected="selected"';
            }
            
$ret .= '>' $name '</option>' ;
        }
        
$ret .= '</select>';
        return 
$ret;
    }
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.



48
Tarik
XoopsFormSelect classes not shown
  • 2012/2/4 20:10

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


Hello, I'm currently developing a Xoops module and used jquery and after some searching i found that XoopsFormSelect doesnt give the classes like the other inputs
class='".$this->getClass()."'
is it intended or what?

it took me a lot of time to find the problem with my code so wanted to share it
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.



49
Tarik
Re: Publisher ajax upload
  • 2011/10/2 18:18

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


i used turtoise to grab it from the google code svn
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.



50
Tarik
Publisher ajax upload
  • 2011/10/2 16:26

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


Hello,
my topic is about a presistant problem that i have with publisher with the ajaxupload which does'nt work properly because i cant click the upload button
and in the console i have an error
Erreur $publisher is not defined
Fichier Source 
http://www.xo-aminoss.info/modules/publisher/submit.php?itemid=5
Ligne 480

i lookt at the code and i found this line
$publisher(document).ready(function(){

can someone clarify the publisher variable thing since i'm a novice in JavaScript

EDIT: publisher version from svn and xoops 2.5.1a
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.




TopTop
« 1 2 3 4 (5) 6 7 8 ... 15 »



Login

Who's Online

152 user(s) are online (91 user(s) are browsing Support Forums)


Members: 0


Guests: 152


more...

Donat-O-Meter

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

Latest GitHub Commits