1
ramazz
Re: move xoops db from mysql 5.01 to 4.0.23
  • 2005/1/12 18:44

  • ramazz

  • Just popping in

  • Posts: 14

  • Since: 2004/10/27


Is it safe to simply mount my mysql5 db files on a 4.0.23 server and do a backup/restore from there?



2
ramazz
move xoops db from mysql 5.01 to 4.0.23
  • 2005/1/5 15:13

  • ramazz

  • Just popping in

  • Posts: 14

  • Since: 2004/10/27


Is there an easy way to transfer a XOOPS db from a 5.01db to a 4.0.23 db? I tried to use the mysqladmin windows utility to do a backup and restore but it gives me errors when trying to restore to the 4.0.23 (kinda assumed it might).

Any help appreciated.



3
ramazz
forge theme css and poll header
  • 2004/12/24 10:18

  • ramazz

  • Just popping in

  • Posts: 14

  • Since: 2004/10/27


where in the forge css files do I need to change the text color so the Poll header doesn't use white text. Currently its white text on a white background which of course makes it difficult for people to tell what the polls are even about.

Other option, which may be a better option would be to change the block header background color. This of course I assume would be a css change for the right column of the page...

Nevermind, I found it

td#rightcolumn th {background-color: #FFFFFF; color: #FFFFFF; vertical-align: middle;}



4
ramazz
Re: Forge theme and newbb2 not happy?
  • 2004/12/11 5:25

  • ramazz

  • Just popping in

  • Posts: 14

  • Since: 2004/10/27


its magically working now. stange, didn't have caching enabled or anything and browsers cache was cleared. oh well, not gonna argue, guess the computer gods just wanted to mess with my head.



5
ramazz
Re: Forge theme and newbb2 not happy?
  • 2004/12/11 2:26

  • ramazz

  • Just popping in

  • Posts: 14

  • Since: 2004/10/27


been there done that. unless i don't know how to copy/paste properly...
here is the first part of the theme.html file prior to body. I have even tried moving it around a bit to different places though i think i have it in the correct spot already

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<{$xoops_langcode}>" lang="<{$xoops_langcode}>">
<head>
<meta http-equiv="content-type" content="text/html; charset=<{$xoops_charset}>" />
<meta http-equiv="content-language" content="<{$xoops_langcode}>" />
<meta name="robots" content="<{$xoops_meta_robots}>" />
<meta name="keywords" content="<{$xoops_meta_keywords}>" />
<meta name="description" content="<{$xoops_meta_description}>" />
<meta name="rating" content="<{$xoops_meta_rating}>" />
<meta name="author" content="<{$xoops_meta_author}>" />
<meta name="copyright" content="<{$xoops_meta_copyright}>" />
<meta name="generator" content="XOOPS" />
<title><{$xoops_sitename}> - <{$xoops_pagetitle}></title>
<link href="<{$xoops_url}>/favicon.ico" rel="SHORTCUT ICON" />
<!--Téléchargements -->

<script type="text/javascript">
<!--
<{$xoops_js}>
//-->
</script>
<link rel="stylesheet" type="text/css" media="all" href="<{$xoops_imageurl}>forge_style.css" />
<link rel="stylesheet" type="text/css" media="all" href="<{$xoops_imageurl}>layout.css" />
<link rel="stylesheet" type="text/css" media="all" href="<{$xoops_url}>/xoops.css" />
<link rel="stylesheet" type="text/css" media="all" href="<{$xoops_themecss}>" />
<!--*Robots Index -->

<{$xoops_module_header}>

</head>



6
ramazz
Forge theme and newbb2 not happy?
  • 2004/12/10 17:52

  • ramazz

  • Just popping in

  • Posts: 14

  • Since: 2004/10/27


It seems that the dropdown menu in the newbb2 doesn't work correctly with the forge theme. Normally the 'Main Options' opens a menu when you mouse over it, but with the forge theme, its already open and creates a large unattractive area in the middle of the site.

Has anyone else tested this?

Is there an easy fix?



7
ramazz
Re:xoops 2.0.8/2.0.9 and php5 crashes IS a PHP5 issue, not a xoops issue
  • 2004/11/2 19:18

  • ramazz

  • Just popping in

  • Posts: 14

  • Since: 2004/10/27


Hehe. U probably understand it better than I do. I simply found the issue annoying while testing the port of php 5.0.2 on my netware server as it would cause an abend so reported it to the novell dev's as I had assumed it was netware specific. Turns out it wasn't an issue only on Netware.

The last post (the real long one) in the php bug report has all the dirty details of where and why.

----------
The code snippet which causes this segmentation fault
might sound funny. But it is the root cause of major functionality in
xoops application.

This will happen only with 7 character member arrays which is indexed
with non existent entry and function call is made on that.

Based on my study of the issue let me explain this,

$somenonexistentobject->sevench[0]()

$somenonexistentobject->sevench[0] this evaluates to Long.

While zend_do_begin_method_call
last_op_number = get_next_op_number(CG(active_op_array))-1;
last_op = &CG(active_op_array)->opcodes[last_op_number];

Assumes last_op's op2 to be string always which is incorrect in this
case.

etc...
-----------

Apparently Kameshj already fixed php in the cvs so hopefully his patches stick and we see them in a public release of php 5.0.3 or 5.1 soon. I'm probably just gonna compile the cvs fixed version for myself and will host it on my site for any netware users looking for it. Not sure when I'll have the time though.

Current netware ports by Guenter Knauf are athttp://www.gknw.com/php/dev/

A Novell supported/maintained build of 5.x will be included with netware starting with 6.5sp3 and OES. I think their version already has the fix in it
6.5sp3 and oes are in authorized beta right now so either sign up to join the betas at www.novell.com/beta or wait for the public betas later in November

Rodney



8
ramazz
xoops 2.0.8/2.0.9 and php5 crashes IS a PHP5 issue, not a xoops issue
  • 2004/11/2 18:42

  • ramazz

  • Just popping in

  • Posts: 14

  • Since: 2004/10/27


Not sure if this has been mentioned already but I have been working with novell on the issue of installing certain larger modules in XOOPS 2.0.8 and 2.0.9 on a php5.x system and they have found the bug in php5.x and reported the bug. Hopefully it gets fixed asap and rolled into a php 5.0.3 soon.

http://bugs.php.net/bug.php?id=30457

Rodney




TopTop



Login

Who's Online

211 user(s) are online (156 user(s) are browsing Support Forums)


Members: 1


Guests: 210


heyula,

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