1
kutovoy
Re: 2.2.3a->2.2.4 update bug
  • 2006/5/31 10:07

  • kutovoy

  • Just popping in

  • Posts: 17

  • Since: 2005/7/11


BTW, I created some custom profile fields when on 2.2.3a... M.b. update script simply skip conversion of them...

Any ideas?..



2
kutovoy
Re: User Posting Under My Account
  • 2006/5/30 9:39

  • kutovoy

  • Just popping in

  • Posts: 17

  • Since: 2005/7/11


No XOOPS version specified, no info about in which module user posted/for which item comment posted, nothing, just a question...

Please specify for XOOPS devs at least:

xoops version, and where user posted...



3
kutovoy
Re: Request for help in improving Xoops spam system, easily!!
  • 2006/5/25 10:37

  • kutovoy

  • Just popping in

  • Posts: 17

  • Since: 2005/7/11


I think simple system of word filtering have no sense and can't fight against spammers.

Can it filter \/\/0rd \/\/r1t.ten with some mods or words written via text-graphic? No...

U need to look into anti-spam filtering systems that are based on more complex filtering than simpel word-filtering...

I don't want to copy such work...



4
kutovoy
Re: 2.2.3a->2.2.4 update bug
  • 2006/5/23 19:43

  • kutovoy

  • Just popping in

  • Posts: 17

  • Since: 2005/7/11


And topic title is - update bug... Surely I have working site 2.2.3a...before...and broken after applying patch... (backups helped to restore it ;)



5
kutovoy
Re: 2.2.3a->2.2.4 update bug
  • 2006/5/23 19:40

  • kutovoy

  • Just popping in

  • Posts: 17

  • Since: 2005/7/11


Quote:

jensclas wrote:
Could be your MySQL:

read this
To install XOOPS for the first time you'll need to have the minimum following server software pre-installed on your host webserver:
* HTTP Server (Apache or IIS) "Note, XOOPS only officially supports Apache"
* PHP 4.1.0 and higher (4.1.x recommended) Note: PHP 5 may cause a problem until the next release. If you have PHP5 please check the Install#Troubleshooting note.
* MySQL Database 3.23.XX or 4.xx (XOOPS will have compatability with MySQL 5 in the next release.)

from xoopsdocs


Big thanks for at least reply, but I'm working in PHP/MySQL more than 2 years, wrote 2 XOOPS modules and numerous set of commercial modules for other CMS ;) and surely I known about that... But problem exists :)

Still awaiting of any ideas...

Best regards,
Nickolay.



6
kutovoy
2.2.3a->2.2.4 update bug
  • 2006/5/23 10:19

  • kutovoy

  • Just popping in

  • Posts: 17

  • Since: 2005/7/11


Updated site via xoops-2.2.3a-to-2.2.4.zip patch, downloaded from official XOOPS page. Got:

atal error: Cannot use object of type XoopsProfileField as array in x:\xxx\www.example.com\kernel\profilefield.php on line 355

$fields_data = array();
foreach($_fields_data as $key => $field_data){
for($i=0;$i<count($keys);$i++){
$fields_data[$key][$keys[$i]] = $field_data[$i]; // 355 line
}
}

tried to fix myself, looks like working, but not sure that there will not spawn some profile fields problem at future:

$fields_data = array();
foreach($_fields_data as $key => $field_data){
for($i=0;$i<count($keys);$i++){
if ( is_object($field_data) )
$fields_data[$key][$keys[$i]]=$field_data->vars[$keys[$i]];
else
$fields_data[$key][$keys[$i]] = $field_data[$i]; // old 355 line
}
}

question... What I did wrong when updated (simply copied with overwriting files from html folder from path to my site folder, I can't access any page - nither login nor admin panel) site or is my fix correct/where to download official fix.

Thanks in advance!

p.s.
PHP v: 5.1.2
MySQL Server v: 5.0.16-nt
MySQL Client API v: 5.0.16




7
kutovoy
Re: It's possible: Banner with email?
  • 2005/9/7 7:17

  • kutovoy

  • Just popping in

  • Posts: 17

  • Since: 2005/7/11


Hi there,

try next links as urls for banners:

mailto:aaa@example.com
mailto:aaa@example.com&subject=Hello



8
kutovoy
Re: error message
  • 2005/7/24 19:19

  • kutovoy

  • Just popping in

  • Posts: 17

  • Since: 2005/7/11


Hi there.

Some info missing for making suggestions:
*) Your browser (IE?) version.
*) Your XOOPS version.

+) Feel free to post lines from 20 to 30 from that script(e.g. JavaScript which is included ).

Such info will greatly help.

Best regards.



9
kutovoy
Re: Messed up xoops bad, need help, will pay.
  • 2005/7/24 19:01

  • kutovoy

  • Just popping in

  • Posts: 17

  • Since: 2005/7/11


Hi, for first you need to play with your backup sql from pre RC.
1. Install MySQL at home, run it. Save unpacked SQL at some dir. Look at SQL file for
"CREATE DATABASE xxxx"

string. If there no string at beginning like that, insert at begining:
"CREATE DATABASE chip_test;USE chip_test;"

Run MySQL:
mysql -u root
or
mysql -u root -p

execute
>source dir/unpacked_sql.txt
ex.:
>source /home/chip/mysql.txt

If u don't get any error - that is cool. If u get them, try to figure what errors u have. Post some of them here. May be that SQL file isn't so ill.

Check that you don't broke SQL text file when edit it in some buggy editor which will insert some linebreaks or will wrap words. May be that is problem.

If old SQL still is bad... You need to figure which tables from new SQL backup (after RC install) do u need. Eg. you can try to mess tables needed to XOOPS 2.0.13 to work (from clear XOOPS 2.0.13 install) with tables which is needed by your modules/data. Eg. you need to play with 2 SQL:
1. with new SQL backup from messed site - cut from them all tables except XOOPS related.
2. with SQL backup from clear XOOPS 2.0.13 install - add to them tables from step 1.

That is some ways that may help. Try it.

Good luck!



10
kutovoy
Re: Can Xoops link to extra MySQL databases?
  • 2005/7/24 18:40

  • kutovoy

  • Just popping in

  • Posts: 17

  • Since: 2005/7/11


You will need some hack to XOOPS/module in area for which you interesting to use 2+ DB. (I think that module hack will be not so hard)

Or you can try play with MySQL clustering, but sure that isn't what you mean




TopTop
(1) 2 »



Login

Who's Online

157 user(s) are online (111 user(s) are browsing Support Forums)


Members: 0


Guests: 157


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