31
aixos
Re: Modules working with XOOPS 2.3
  • 2008/9/7 8:48

  • aixos

  • Just popping in

  • Posts: 79

  • Since: 2004/12/31


Hi
I find the list of compatible modules for XOOPS 2.3.0?
Where is a wiki list of this modules?
many thanks
aixos



32
aixos
Re: theme default 2.2.5 adapting to xoops 2.0.16 default
  • 2007/1/5 21:06

  • aixos

  • Just popping in

  • Posts: 79

  • Since: 2004/12/31


Ok, Julio NC
thank you very much

greetings

aixos



33
aixos
theme default 2.2.5 adapting to xoops 2.0.16 default
  • 2007/1/3 21:59

  • aixos

  • Just popping in

  • Posts: 79

  • Since: 2004/12/31


Hi,
Somebody that dominates this theme of XOOPS 2.2.5, since I can make to pass it to the version XOOPS 2.0.16.

This theme default is in version 2.2.2 + 2.2.3 + 2.2.4 + 2.2.5

Some idea of like adapting it? to version XOOPS 2.0.16

greetings



34
aixos
Re: oryxgen V 0.6
  • 2006/4/2 11:37

  • aixos

  • Just popping in

  • Posts: 79

  • Since: 2004/12/31


If you have a error in istalation
Quote:
"You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT CHARSET=utf8' at line 15"



see:
solution

you can edit the .sql files to remove the expression DEFAULT CHARSET-latin1

the good code is this :
code .sql
-- table `xg_class`

CREATE TABLE `xg_class` (
  `
class_idmediumint(8NOT NULL auto_increment,
  `
class_namevarchar(60NOT NULL default '',
  `
class_short_namechar(3NOT NULL default '',
  `
module_idmediumint(8NOT NULL default '0',
  `
primary_field_namevarchar(60NOT NULL default '',
  `
is_for_admintinyint(1NOT NULL default '0',
  `
is_for_creatortinyint(1NOT NULL default '0',
  `
in_blocktinyint(1NOT NULL default '1',
  `
is_wrf_validtinyint(1NOT NULL default '0',
  `
uidmediumint(8unsigned NOT NULL default '0',
  `
date_creationdatetime NOT NULL default '0000-00-00 00:00:00',
  `
date_last_updatedatetime NOT NULL default '0000-00-00 00:00:00',
  
PRIMARY KEY  (`class_id`)
ENGINE=MyISAM ;

-- 
table `xg_module`

CREATE TABLE `xg_module` (
  `
module_idmediumint(8NOT NULL auto_increment,
  `
module_namevarchar(30NOT NULL default '0',
  `
short_namechar(2NOT NULL default '',
  `
versionvarchar(10NOT NULL default '',
  `
master_class_namevarchar(60NOT NULL default '0',
  `
date_creationdatetime NOT NULL default '0000-00-00 00:00:00',
  `
date_last_updatedatetime NOT NULL default '0000-00-00 00:00:00',
  
PRIMARY KEY  (`module_id`)
ENGINE=MyISAM ;

-- 
table `xg_field_def`

CREATE TABLE `xg_field_def` (
  `
field_idmediumint(8NOT NULL auto_increment,
  `
key_idmediumint(8NOT NULL default '0',
  `
class_idmediumint(8NOT NULL default '0',
  `
field_namevarchar(60NOT NULL default '',
  `
field_typevarchar(60NOT NULL default '',
  `
html_typevarchar(60NOT NULL default '',
  `
sizemediumint(8NOT NULL default '0',
  `
html_extravarchar(100NOT NULL default '',
  `
source_join_keyvarchar(60NOT NULL default '',
  `
foreign_classvarchar(60NOT NULL default '',
  `
weightsmallint(3NOT NULL default '0',
  `
trayvarchar(20NOT NULL default '',
  `
default_valuevarchar(80NOT NULL default '',
  `
is_neededtinyint(1NOT NULL default '0',
  `
is_in_create_formtinyint(1NOT NULL default '0',
  `
is_in_modif_formtinyint(1NOT NULL default '0',
  `
is_searchtinyint(1NOT NULL default '0',
  `
is_list_showtinyint(1NOT NULL default '0',
  `
is_partof_desctinyint(1NOT NULL default '0',
  `
is_partof_key_unicitytinyint(1NOT NULL default '0',
  `
with_helptinyint(1NOT NULL default '0',
  `
uidmediumint(8NOT NULL default '0',
  `
date_creationdatetime NOT NULL default '0000-00-00 00:00:00',
  `
date_last_updatedatetime NOT NULL default '0000-00-00 00:00:00',
  
PRIMARY KEY  (`field_id`)
ENGINE=MyISAM ;

-- 
table `xg_statut`

CREATE TABLE `xg_statut` (
  `
statut_idmediumint(8NOT NULL auto_increment,
  `
class_idmediumint(8NOT NULL default '0',
  `
statut_numbertinyint(2NOT NULL default '0',
  `
with_historiquetinyint(1NOT NULL default '0',
  `
template_visumediumint(8NOT NULL default '0',
  `
statut_namevarchar(30NOT NULL default '0',
  `
date_creationdatetime NOT NULL default '0000-00-00 00:00:00',
  `
date_last_updatedatetime NOT NULL default '0000-00-00 00:00:00',
  
PRIMARY KEY  (`statut_id`)
ENGINE=MyISAM ;

-- 
table `xg_statut_criteria`

CREATE TABLE `xg_statut_criteria` (
  `
criteria_idmediumint(8NOT NULL auto_increment,
  `
statut_idmediumint(8NOT NULL default '0',
  `
php_variable_namevarchar(60NOT NULL default '',
  `
class_idmediumint(8NOT NULL default '0',
  `
field_namevarchar(60NOT NULL default '0',
  `
valuevarchar(30NOT NULL default '0',
  `
operatorvarchar(10NOT NULL default '0',
  `
transitionvarchar(20NOT NULL default '',
  `
uidmediumint(8NOT NULL default '0',
  `
date_creationdatetime NOT NULL default '0000-00-00 00:00:00',
  `
date_last_updatedatetime NOT NULL default '0000-00-00 00:00:00',
  
PRIMARY KEY  (`criteria_id`)
ENGINE=MyISAM ;

-- 
table `xg_statut_field`

CREATE TABLE `xg_statut_field` (
  `
statut_field_idmediumint(8NOT NULL auto_increment,
  `
field_idmediumint(8NOT NULL default '0',
  `
statut_idmediumint(8NOT NULL default '0',
  `
rangsmallint(2NOT NULL default '0',
  `
date_creationdatetime NOT NULL default '0000-00-00 00:00:00',
  `
date_last_updatedatetime NOT NULL default '0000-00-00 00:00:00',
  
PRIMARY KEY  (`statut_field_id`),
  
UNIQUE KEY `statut_field_id` (`statut_field_id`)
ENGINE=MyISAM ;

-- 
table `xg_action`

CREATE TABLE `xg_action` (
  `
action_idmediumint(8NOT NULL auto_increment,
  `
action_namevarchar(60NOT NULL default '',
  `
weightmediumint(3NOT NULL default '0',
  `
with_confirmtinyint(1NOT NULL default '0',
  `
statut_idmediumint(8NOT NULL default '0',
  `
class_idmediumint(8NOT NULL default '0',
  `
date_creationdatetime NOT NULL default '0000-00-00 00:00:00',
  `
date_last_updatedatetime NOT NULL default '0000-00-00 00:00:00',
  
PRIMARY KEY  (`action_id`)
ENGINE=MyISAM ;


The instalacion is a correct in this moment
best regarts
aixos



35
aixos
Re: Generating reports from the extended profiles module
  • 2006/3/26 8:46

  • aixos

  • Just popping in

  • Posts: 79

  • Since: 2004/12/31


Hello,

we are working in a module extended profiles, in the version of XOOPS 224.

We want that when a search is made, it throws in the result all the associated fields of the search to the search of the field that has looked for.

Clarifying example We have the following fields:
Phone
name
Location
email
Birthday
and more.........

The result is

I look for in the field the name of user and the email to me.

Since I do so that it shows all info to me of the user of fields of the search form. thanks

aixos



36
aixos
Re: Profiles extended module in xoops 2.2.4 fields
  • 2006/3/26 8:45

  • aixos

  • Just popping in

  • Posts: 79

  • Since: 2004/12/31





37
aixos
Profiles extended module in xoops 2.2.4 fields
  • 2006/3/26 8:28

  • aixos

  • Just popping in

  • Posts: 79

  • Since: 2004/12/31


Hello,
Quote:
Why??? Generating reports from the extended profiles module??


we are working in a module extended profiles, in the version of XOOPS 224.

We want that when a search is made, it throws in the result all the associated fields of the search to the search of the field that has looked for.

Clarifying example We have the following fields:
Phone
name
Location
email
Birthday
and more.........

The result is

I look for in the field the name of user and the email to me.

Since I do so that it shows all info to me of the user of fields of the search form. thanks

aixos



38
aixos
Re: Catads 1.30 - Array submission error...
  • 2006/2/5 14:44

  • aixos

  • Just popping in

  • Posts: 79

  • Since: 2004/12/31


Hi,
the problem is your server's configuration.

I running the module Catads 1.40 in another server , no problem , that rights

..........................................................
configuartion is this:
..........................................................
System Debian GNU/Linux - Bi PIII 1Ghz - 1 Gb RAM - Kernel 2.4.x
Build Date Jun 30 2003 14:16:33
Configure Command './configure' '--with-jpeg-dir=/usr' '--with-png-dir=/usr' '--with-zlib=/usr' '--with-bz2=/usr' '--with-tiff-dir=/usr' '--with-zip=/usr/local' '--with-gd=/usr' '--with-ttf=/usr/include/freetype2/freetype' '--with-freetype-dir=/usr' '--with-mhash=/usr/local/' '--with-dom=/usr' '--with-ming=/usr' '--without-pear' '--enable-gd-native-ttf' '--enable-calendar' '--enable-bcmath' '--enable-safe-mode' '--enable-memory-limit' '--enable-trans-sid' '--disable-posix' '--disable-sockets' '--with-mysql=/usr/' '--enable-force-cgi-redirect' '--with-clibpdf' '--with-gettext' '--with-mcrypt=/usr/' '--with-mcal-dir=/usr/' '--enable-mbstring' '--enable-mbregex' '--with-iconv'
Server API CGI
Registered PHP Streams php, http, ftp, compress.bzip2, compress.zlib
--------------------------------------------------

Change the configuration of its servant and it worked to him correctly

best regards

aixos



39
aixos
Re: Catads v 1.40 and photos problem
  • 2006/2/5 14:18

  • aixos

  • Just popping in

  • Posts: 79

  • Since: 2004/12/31


ok, thats right

in another host , running very vell XOOPS 2.0.9.2

System Debian GNU/Linux - Bi PIII 1Ghz - 1 Gb RAM - Kernel 2.4.x
Build Date Jun 30 2003 14:16:33
Configure Command './configure' '--with-jpeg-dir=/usr' '--with-png-dir=/usr' '--with-zlib=/usr' '--with-bz2=/usr' '--with-tiff-dir=/usr' '--with-zip=/usr/local' '--with-gd=/usr' '--with-ttf=/usr/include/freetype2/freetype' '--with-freetype-dir=/usr' '--with-mhash=/usr/local/' '--with-dom=/usr' '--with-ming=/usr' '--without-pear' '--enable-gd-native-ttf' '--enable-calendar' '--enable-bcmath' '--enable-safe-mode' '--enable-memory-limit' '--enable-trans-sid' '--disable-posix' '--disable-sockets' '--with-mysql=/usr/' '--enable-force-cgi-redirect' '--with-clibpdf' '--with-gettext' '--with-mcrypt=/usr/' '--with-mcal-dir=/usr/' '--enable-mbstring' '--enable-mbregex' '--with-iconv'
Server API CGI
Registered PHP Streams php, http, ftp, compress.bzip2, compress.zlib



40
aixos
Catads v 1.40 and photos problem
  • 2006/2/5 11:08

  • aixos

  • Just popping in

  • Posts: 79

  • Since: 2004/12/31


tested in XOOPS 2.2.4 and 2.2.3a and 2.0.13.2

My problem is that the uploaded photos is not showing up.

error is
"The upload of your image failed
Check that the number of bytes is not bigger than 30000"


I'm checked that the /images folder has chmod 777. I have also checked the image uploaded fits into the size/weight definitions set in admin.

Anyone has any idea about how to solve this?

PD: in localhost working very good and any photos upload and no problem
----------------------------------
Here not running

The configuration is PHP 4.4.0
System Linux stone 2.6.13.4 #3 Thu Oct 27 21:36:53 ART 2005 i686
Build Date Oct 25 2005 00:40:27
Configure Command './configure' '--with-mysql' '--with-apache=../apache_1.3.34' '--with-jpeg' '--with-gd' '--with-zlib'
Server API Apache
Virtual Directory Support disabled
Configuration File (php.ini) Path /usr/local/lib/php.ini
PHP API 20020918
PHP Extension 20020429
Zend Extension 20050606
Debug Build no
Zend Memory Manager enabled
Thread Safety disabled
Registered PHP Streams php, http, ftp, compress.zlib

This program makes use of the Zend Scripting Language Engine:
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies




TopTop
« 1 2 3 (4) 5 6 »



Login

Who's Online

240 user(s) are online (155 user(s) are browsing Support Forums)


Members: 0


Guests: 240


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