61
vinit
Re: How to integrate htmlarea?
  • 2004/12/28 8:14

  • vinit

  • Just can't stay away

  • Posts: 530

  • Since: 2004/1/10


ya i have seen your posts at dev.xoops.org in regard to it.
Along with docs other problem is the clearity of understanding differnces between htmlarea and other available. Things like which one is fast, secure, ease to install etc.

Looks like we need a good discusion on this too.



62
vinit
Koivi Editor Vs Html Area
  • 2004/12/28 7:14

  • vinit

  • Just can't stay away

  • Posts: 530

  • Since: 2004/1/10


Hi,

Recently we have seen two good content development IDEs. both seems to have same functions, Can someone tell me which one is widely acceptable and easy to install.


~Edit
And a newone fckeditor
http://dev.xoops.org/modules/xfmod/forum/forum.php?forum_id=754

Any updates in this regard. Again no docs :(



63
vinit
Re: QA Smoketests
  • 2004/12/28 5:59

  • vinit

  • Just can't stay away

  • Posts: 530

  • Since: 2004/1/10


My 1/2 cent,

1. A good application not only need a strong core with good attachements but also needs to perform good under stress conditions. Thus while developing and coding we should also look into how much load its generating on server.

Test using tools like loa runner and winrunner has to be done to find out if XOOPS core or anyother module is suffering from memory leak, process zombies or untrapped threads.

If we could tackle those undsired outcomes then we can have better performance at high loads.

2. A standards documetnation has to be released so that while coding those standards are maintained and followed strictly.

3. Usage of stable versions for production must me communicated. This will reduce the ill feelings in newbies in relate to unperforming modules.

4. Module naming conventions has to be defined show that it carries meanings.


5. Each developer should create a set of test cases to justify that the module performs as expected. This tests should be executed by QA team to check if the module meets the given test cases.



64
vinit
Re: XOOPS
  • 2004/12/28 5:31

  • vinit

  • Just can't stay away

  • Posts: 530

  • Since: 2004/1/10


i personally feel superspotlight is much better option then what we have at this place. Only thing is that minispotlights should also be dynamic in superspotlight, It this happens then that would be the best module for news display.



65
vinit
Re: How to integrate htmlarea?
  • 2004/12/27 5:14

  • vinit

  • Just can't stay away

  • Posts: 530

  • Since: 2004/1/10


anyone in here using htmlarea? do let me know how did you integrate it?



66
vinit
How to integrate htmlarea?
  • 2004/12/26 17:11

  • vinit

  • Just can't stay away

  • Posts: 530

  • Since: 2004/1/10


Hi,

How do i integrate the htmlarea 3.0 into Newbb 2.0, News, wfsection and other sections where user needs to feed in text or content.



67
vinit
Re: NewBB2 not detecting GD in Fedora Core 3?
  • 2004/12/26 15:27

  • vinit

  • Just can't stay away

  • Posts: 530

  • Since: 2004/1/10


offcourse

Fedora always has tendency to screw up things in its own way.
read here
http://www.fedoraforum.org/forum/archive/index.php/t-27754.html



68
vinit
How to set a Group as moderator
  • 2004/12/26 15:21

  • vinit

  • Just can't stay away

  • Posts: 530

  • Since: 2004/1/10


hi,

Instead of adding a individuals, i would like to add a group as moderator, thus everymember of this group will have moderator powers.

Is there any hack to get this done?



69
vinit
Image verification process before registration.
  • 2004/12/26 14:23

  • vinit

  • Just can't stay away

  • Posts: 530

  • Since: 2004/1/10


Create a user verification image like seen on sites like neopets. Now with encoded url image source for extra security...

file : image.php
<?php
require_once "encode.php";
$decid = urldecode(md5_decrypt($_REQUEST['id'], $_REQUEST['key']));
header("Content-type: image/png");
$img = imagecreatetruecolor(65, 20);
$white = imagecolorallocate($img, 255, 255, 255);
$brown = imagecolorallocate($img, 255, 51, 51);
imagefill($img, 0, 0, $brown);
imagestring($img, 3, 6, 3, $decid, $white);
imagepng($img, '', 75);
imagedestroy($img);
?>

file : encode.php ( md5 section)
<?php
function get_rnd_iv($iv_len){
$iv = '';
while ($iv_len-- > 0) {
$iv .= chr(mt_rand() & 0xff);
}
return $iv;
}
function md5_encrypt($plain_text, $password, $iv_len = 16){
$plain_text .= "\x13";
$n = strlen($plain_text);
if ($n % 16) $plain_text .= str_repeat("\0", 16 - ($n % 16));
$i = 0;
$enc_text = get_rnd_iv($iv_len);
$iv = substr($password ^ $enc_text, 0, 512);
while ($i < $n) {
$block = substr($plain_text, $i, 16) ^ pack('H*', md5($iv));
$enc_text .= $block;
$iv = substr($block . $iv, 0, 512) ^ $password;
$i += 16;
}
return base64_encode($enc_text);
}
function md5_decrypt($enc_text, $password, $iv_len = 16){
$enc_text = base64_decode($enc_text);
$n = strlen($enc_text);
$i = $iv_len;
$plain_text = '';
$iv = substr($password ^ substr($enc_text, 0, $iv_len), 0, 512);
while ($i < $n) {
$block = substr($enc_text, $i, 16);
$plain_text .= $block ^ pack('H*', md5($iv));
$iv = substr($block . $iv, 0, 512) ^ $password;
$i += 16;
}
return preg_replace('/\\x13\\x00*$/', '', $plain_text);
}
?>

file : webform.php
with this file simply do your webform as you normally would and simply include the image into the file

i.e
<?php
require_once "encode.php";
$string = md5(rand(0, microtime()*1000000));
$verify_string = substr($string, 3, 7);
$key = md5(rand(0,999));
$encid = urlencode(md5_encrypt($verify_string, $key));
echo "<img src='1.php?id=$encid&key=$key'><br>";
echo "to verify the user would hve to type in $verify_string";
?>


I wish someone could incorporate this into the XOOPS user registration process.



70
vinit
Re: NewBB2 not detecting GD in Fedora Core 3?
  • 2004/12/26 14:07

  • vinit

  • Just can't stay away

  • Posts: 530

  • Since: 2004/1/10


Installed php-gd, still no effect :(
Googling arround to find out what else is needed.
Do let me know if you come to know anything more about it

rpm -qa | grep "gd"
gdbm-1.8.0-24
gd-2.0.28-1
gdb-6.1post-1.20040607.41
gd-devel-2.0.28-1
gdm-2.6.0.5-6
gdesklets-0.30-1.1.fc3.rf
sysklogd-1.4.1-22
php-gd-4.3.9-3
gdk-pixbuf-0.22.0-15.0
gdbm-devel-1.8.0-24


GD is now detectedm yet the images are not comming up :(

Does it need
php-mbstring, and php-ncurses packages,




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



Login

Who's Online

216 user(s) are online (106 user(s) are browsing Support Forums)


Members: 0


Guests: 216


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