31
skalpa
Re: Fishy xoops after server change
  • 2005/9/18 22:35

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Quote:
We've solved the problem...

Could you please tell us what it was (maybe it can help somebody else in the future).

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



32
skalpa
Re: Fishy xoops after server change
  • 2005/9/17 17:48

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Another one: check that persistent connections are not used (edit mainfile.php, find the line that defines XOOPS_DB_PCONNECT, and ensure the value is 0 and not 1).

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



33
skalpa
Re: moving xoops site
  • 2005/9/10 23:59

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Quote:
MySQL Database Restore
Both of these native MySQL scripts will export and import your database with ease.


This method works generally better than phpMyAdmin if you have a lot of data to import.
People without CLI/shell access to their server can also try to put the MySQL command in a php script:
- Put the sql dump as well as the following 'import.php' in the same folder
- Display the import.php file with your browser
<?php
  system
'mysql --host=database host IP ...see jdseymour's article... < filename.sql' );
?>


skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



34
skalpa
Re: correct wat to publish a xoops site elaborated on local machine
  • 2005/9/10 15:56

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


The "Undefined index" lines mean XOOPS is unable to retrieve the config data from the DB.
Quote:
on my local machine it runs:
...
MySQL version : 4.1.10a-nt - extension : mysqli

and on the remote machine it runs:
...
MySQL version 4.0.18-standard

It might come from here.
MySQL 4.0 and 4.1 are not fully compatible since the later changed/enhanced its support for different character sets.
I can't help you anymore, as I never encountered this (I run different MySQL locally, so my local sites use the same versions as the online ones), but somebody else may give a solution starting from this info (maybe: check if the program you use to export/transfer the db data has an option to handle this).

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



35
skalpa
Re: error message during installation
  • 2005/9/10 14:05

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


It's due to the fact you use PHP 4.0 or 5.1, but doesn't mean anything (a "notice" is not the same as an "error").

Don't take care of it.

A future release will ensure these notices disappear.

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



36
skalpa
Re: Version Question
  • 2005/9/8 11:59

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Faster: Look into include/version.php

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



37
skalpa
Re: XOOPS scalability for large site?
  • 2005/9/1 9:20

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Hi and welcome here,

First, as it has been said already, XOOPS will be highly dependent on external parameters/software (but if you plan to make such a site, I guess you already have somebody who knows that close to you).

Now, to answer your questions about XOOPS by itself:

0. Considering your objective, use the latest 2.0.x version as your codebase. There will be a clear upgrade path from this version to the next one (2.4.0) and the 2.2.x releases are quite less scalable, so you'll get more comfortable by doing this.

2. I wouldn't say any particular part has scalability problems, however several ones can/must be enhanced so you can reach you goal.

- The boot sequence (things done or launched from include/common.php) is particularly sensitive to speed enhancements as it will be performed on each page request, even if it does not actually have main problems.
- The output generation layer will have to be refactored (ie: it actually generates useless DB queries that could be prevented).
- The output caching system will have to be greatly enhanced too. It will also be a main actor on such a website and the actual one, if not inefficient, is too limited to give you a good control of your site caching policy.

3. We'll be publishing our objectives for the next major release really soon (within days/next week): changing the parts I talk of will be part of our targets, so to demonstrate what I said is precisely what I/we intend to do ;). I guess you will want to follow what's happening here before mid-september (and after... ), and we can talk again about your project soon.
But again, the success of this will depend on your server configuration, as well as on these XOOPS enhancements.

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



38
skalpa
Re: Current XMLRPC possibilities and ways to improve it
  • 2005/8/24 21:31

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Quote:
Are there any chances to see extended site management over XMLRPC ?


No need to use XML-RPC for this... but it's one of our targets.

However, I'm not sure it can be achieved right now... one of the main objectives of 2.4 will be "to prepare the core so this kind of things can be done".
So normally it should be in the next one (2.6) features list, and if we're lucky it should even become possible in 2.4 (although in a limited way).

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



39
skalpa
Re: PHPXMLRPC Remote PHP Code Injection Vulnerability
  • 2005/8/24 18:55

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Quote:
Any module that is using the function eval() of php will go to have security problems?


No... eval() like some other PHP functions is just potentially dangerous.
If you are sure the code you give to eval() is safe, there should be no problem.
However if you try to eval() external data, then people may be able to send malicious code to it

So: it is not always dangerous, but it can become a big hole if you do not take care of what you are doing.

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)



40
skalpa
Re: PHPXMLRPC Remote PHP Code Injection Vulnerability
  • 2005/8/24 15:53

  • skalpa

  • Quite a regular

  • Posts: 300

  • Since: 2003/4/16


Quote:
Application: PHPXMLRPC <= 1.1.1


Our XMLRPC class is not PHPXMLRPC, we use another implementation (which doesn't use eval).

It doesn't concern XOOPS...

skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)




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



Login

Who's Online

177 user(s) are online (120 user(s) are browsing Support Forums)


Members: 0


Guests: 177


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