61
Burning
Re: Problem moving to a new hosting
  • 2010/9/29 14:47

  • Burning

  • Theme Designer

  • Posts: 1163

  • Since: 2006/8/22


Usually, a domain bought with a webspace points to the root folder (sometimes named /www, in your case it is public_html). If you don't have modify any parameters about your domain, you should have this kind of tree folder :

- public_html/
- public_html/mainfile.php
- public_html/uploads/
- ...

So it's ok. Now you have to verify on wich folder points your domain or if it is well activated.

Another idea : rename index.html file into public_html/. Sometimes it takes the hand, before index.php
Still learning CSS and... english



62
Burning
Re: Problem moving to a new hosting
  • 2010/9/29 13:56

  • Burning

  • Theme Designer

  • Posts: 1163

  • Since: 2006/8/22


hi'

It seems very strange... as if you have put your Xoops files into the wrong directory / sub-directory.

Are you sure that your domain points to the directory where files are ?
Still learning CSS and... english



63
Burning
Re: Improve default captcha - trouble with language define and path
  • 2010/9/29 13:08

  • Burning

  • Theme Designer

  • Posts: 1163

  • Since: 2006/8/22


Many thanks !!

Both codes work, just a little " to delete before /uploads:
$image .= '<a href="javascript: xoops_captcha_refresh('' . ($this->config['name']) . '')" title="' _CAPTCHA_REFRESH '"><img class="captcha-reload" src="' XOOPS_URL '/uploads/captcha-ico-refresh.gif"></a>';


Now sentence is displayed properly and refresh icon at the right place


Edit : oups! first Trabis code does not work, refresh feature is broken
Still learning CSS and... english



64
Burning
Improve default captcha - trouble with language define and path
  • 2010/9/29 12:36

  • Burning

  • Theme Designer

  • Posts: 1163

  • Since: 2006/8/22


hi'

First sorry if this question has been already resolved, I don't know wich keyword to use


I would like to replace this sentence by an icon :
Quote:
define('_CAPTCHA_REFRESH', 'Click to refresh the image if it is not clear enough.');

(www/language/english/captcha)


To do it, I must :

• 1. edit www/class/captcha/image.php, line 89

Replace :
$image .= "<br /><a href="javascriptxoops_captcha_refresh('" . ($this->config['name']) . "')">" _CAPTCHA_REFRESH "</a>";

By :
$image .= "<a href="javascriptxoops_captcha_refresh('" . ($this->config['name']) . "')" title="_CAPTCHA_REFRESH"><img class="captcha-reload" src="captcha-ico-refresh.gif"></a>";


• 2. put my icon into www/modules/xforms/
(it is the module I use)

Resized Image



Now, two questions :

a • title="_CAPTCHA_REFRESH" does not display sentence, _CAPTCHA_REFRESH appears when I roll hover the icon. Could you tell me the right syntax ?

b • <img class="captcha-reload" src="captcha-ico-refresh.gif"> : path is not very pratical, I would prefer something like <{xoAppUrl /uploads/captcha-refresh.gif}>... so the same icon could be used for all my modules. Again, could you tell me the right syntax ?


Thanks in advance for responses :)
Still learning CSS and... english



65
Burning
Re: Is there still interest in my modules? (Articles, AM Events, etc)
  • 2010/9/27 22:15

  • Burning

  • Theme Designer

  • Posts: 1163

  • Since: 2006/8/22


hi' AndyM,

Thanks for your proposal.


1. Articles

In my opinion you should not spend your time with Articles module, because xoopers have already very good ones :
• News (and now xNews) and AMS
• Publisher (an enchanced version of smartsection)
• Content
• ... etc (take a look to the resource book,https://xoops.org/modules/news/article.php?storyid=5484)


2. AM Contact

There is no need (or no emergency) about a contact module. We have xForms module wich replaces Liaise. And many other modules to manage forms (Formulize).


3. AM Mini Gallery

May be useful because I'm not sure that a very light gallery is already available. We have some powerful module to manage galleries : TDMPictures, myAlbum (still here !), TadGallery, eXtGallery


4. AM Events

Your module AM Events could be very useful. We have some modules but no more developed (eXtCal, Pical) or not compatible with last Xoops version.


Xoops need modules developers, there are gaps about modules :
• ecommerce (Oledrion works but there are several bugs)
• google maps manager (Googlemaps by Marco works fine but Google has evolved, this module not)
• adhesion module
• ...


I hope you will help us again :) !
Still learning CSS and... english



66
Burning
Re: Xmail | No attachments with Auto-approve messages: = Yes?
  • 2010/9/27 12:33

  • Burning

  • Theme Designer

  • Posts: 1163

  • Since: 2006/8/22


hi'

I've found this version (2.52 alpha developed by Claudia) :
http: //www.babylonbyxoops.net/uploads/xmail-2.52-alpha-02-11-2007.zip

I hope it helps.
Still learning CSS and... english



67
Burning
Re: Content 1.25 RC - mbstring extension needed
  • 2010/9/26 20:45

  • Burning

  • Theme Designer

  • Posts: 1163

  • Since: 2006/8/22


... ok, just a little misconfiguration into my php.ini.

To make Content 1.25 RC works in a local environment, it seems we have to activate mbstring extension (not the case per default with wampserver) :

Quote:
[mbstring]
mbstring.language = all
mbstring.internal_encoding = UTF-8
mbstring.http_input = auto
mbstring.http_output = UTF-8
mbstring.encoding_translation = On
mbstring.detect_order = UTF-8
mbstring.substitute_character = none;
mbstring.func_overload = 0
mbstring.strict_encoding = Off
Still learning CSS and... english



68
Burning
Content 1.25 RC - Blank page with Xoops 2.4.5
  • 2010/9/26 20:32

  • Burning

  • Theme Designer

  • Posts: 1163

  • Since: 2006/8/22


hi'

Issue : impossible to display content pages because of this fatal error.
Quote:
Fatal error: Call to undefined function mb_internal_encoding() in C:\wamp\www\xxx\yyy\modules\content\class\autokeyword.php on line 72


It means there is a trouble with this line :
Quote:

mb_internal_encoding($encoding);


Full function is
function autokeyword($params$encoding)
    {
        
//get parameters
        
$this->encoding $encoding;
        
mb_internal_encoding($encoding);
        
$this->contents $this->replace_chars($params['content']);

        
// single word
        
$this->wordLengthMin $params['min_word_length'];
        
$this->wordOccuredMin $params['min_word_occur'];

        
// 2 word phrase
        
$this->word2WordPhraseLengthMin $params['min_2words_length'];
        
$this->phrase2WordLengthMin $params['min_2words_phrase_length'];
        
$this->phrase2WordLengthMinOccur $params['min_2words_phrase_occur'];

        
// 3 word phrase
        
$this->word3WordPhraseLengthMin $params['min_3words_length'];
        
$this->phrase3WordLengthMin $params['min_3words_phrase_length'];
        
$this->phrase3WordLengthMinOccur $params['min_3words_phrase_occur'];

        
//parse single, two words and three words

    
}


Environment :
• Xoops 2.4.5
• PHP 5.2.0
• PhpMyAdmin 5.1.36


If someone has already resolved this issue, it would be very welcome. Thanks in advance.
Still learning CSS and... english



69
Burning
Content 1.25RC - Impossible to delete items, little fix
  • 2010/9/26 20:06

  • Burning

  • Theme Designer

  • Posts: 1163

  • Since: 2006/8/22


hi'

A little fix about Content 1.25RC.

Issue : impossible to delete items (links, pages, section).

Solution : edit admin/content.php, line 83. Replace :
message('backend.php'sprintf(_CONTENT_MSG_DELETE$content->getVar('content_type').': "'.$_REQUEST['alias'].'"'), $content_id);

by
message('backend.php'sprintf(_CONTENT_MSG_DELETE$content->getVar('content_type').': "'.$_REQUEST['alias'].'"'), $content->getVar('content_id'));


Thanks to Dugris
Still learning CSS and... english



70
Burning
Re: Xdonatinons and Xoops 2.4
  • 2010/8/18 8:20

  • Burning

  • Theme Designer

  • Posts: 1163

  • Since: 2006/8/22


hi'

Thanks in advance for your work :) !
Still learning CSS and... english




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



Login

Who's Online

99 user(s) are online (65 user(s) are browsing Support Forums)


Members: 0


Guests: 99


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