81
playsome
Re: What is this option "Only users that accept mail"?
  • 2011/2/4 20:40

  • playsome

  • Not too shy to talk

  • Posts: 197

  • Since: 2009/4/15


Hi,

It is for when you are searching for users, you can check it to only find users who have opted to recieve mail from the site administrator.



82
playsome
Re: Problem with AdSense ad for content
  • 2011/2/3 18:04

  • playsome

  • Not too shy to talk

  • Posts: 197

  • Since: 2009/4/15


Quote:
The strange thing that if opened from a editor like phpDesign, the ad is shown, but in website no. I think it may be related to xoops system, maybe there is an option which blocks javascript?


This me be a silly question and a bit obvious but, do you have any ad blocking plugins on your web browser?



83
playsome
Re: [Webshows] Parse Error
  • 2011/2/2 16:22

  • playsome

  • Not too shy to talk

  • Posts: 197

  • Since: 2009/4/15


unexpected T_VARIABLE, i think can mean there is a curly brace missing or some other syntax error. It will be on or near line 160.

Can you post the full code from the modlink.php file and maybe someone can figure out whats wrong.



84
playsome
Re: Starting with Xoops & Tons of problems :-)
  • 2011/1/19 13:10

  • playsome

  • Not too shy to talk

  • Posts: 197

  • Since: 2009/4/15


Hello, welcome to xoops.

If you are just looking for some simple pages of static html.text content then I reccomend Mastop Publish modulehttps://xoops.org/modules/repository/singlefile.php?cid=94&lid=1901

It allows you to create html pages using a built in editor and you can add text and images, there are also several otehr good content modules with similar functionality check out the static content category herehttps://xoops.org/modules/repository/viewcat.php?cid=94 or xoops modules on sourceforge http://sourceforge.net/projects/xoops/files/XOOPS%20Module%20Repository/XOOPS2/

Many of the content modules also have built in menus which you display using the modules block to allow users to get to your created pages. If you want another menu then check out Multimenu it allows you to create custom links you can link to your pages or other content.

There are also several image gallery modules here https://xoops.org/modules/repository/viewcat.php?cid=36 the best thing to do is to install xoops locally on your pc using XAMP and install the modules and see which ones suit your needs best.




85
playsome
Re: when open wfdownloads module my whole page shifts to left
  • 2011/1/18 14:57

  • playsome

  • Not too shy to talk

  • Posts: 197

  • Since: 2009/4/15


Hi, looks like you just have some conflict with your css. your theme css is centering the page but the css file associated with wfdownloads is making it align to the left.

Look at the css file for wfdownloads and make sure there is no selector which would conflict with your theme e.g the thickbox.css seems to be called when on wfdownloads and it has

*
{
margin: 0;
padding: 0;
}

which wont center the page, however your theme css has

*{
margin: 0 auto;
}

which will center your page, so I would say it is thickbox.css which is causing the problem.



86
playsome
Re: 6GB smarty_cache
  • 2011/1/17 21:28

  • playsome

  • Not too shy to talk

  • Posts: 197

  • Since: 2009/4/15


Sounds like some code in your theme.html has become messed up.

Download your theme.html file and goto line 17 and make sure it looks like this

<link rel="shortcut icon" type="image/ico" href="<{xoImgUrl icons/favicon.ico}>" />


Then re-upload it, maybe goto admin and activate check templates for modification and submit and them turn check templates for modification off.



87
playsome
Re: Problem with tag module v2.30
  • 2011/1/12 18:20

  • playsome

  • Not too shy to talk

  • Posts: 197

  • Since: 2009/4/15


Hi, i just tried to re-create this error on a test install it seems it something to do with how tag module writes its URL's

for example i had the tag 12345 sometimes the tag module will display the tag URL as view.tag.php?10 where 10 is the ID of the tag, when it is like this it seems to be fine and does not produce the invalid query however when tag module displays the URL like view.tag.php?12345 where 12345 is the actual tag (view.tag.php?tagname is OK) name it produces invalid query this is most likely because the module is getting confused and looking for a tag with an ID of 12345 if it is just a text name then there is no problem.

Not sure yet how to fix this but I will try and have a look at it.



88
playsome
Re: So what did you get for Christmas?
  • 2010/12/27 22:21

  • playsome

  • Not too shy to talk

  • Posts: 197

  • Since: 2009/4/15


Hi Mamba, hope you had a nice Christmas.

Being 32, I dont really get much for Christmas anymore, so i got the usual socks and underwear a bottle of whisky and the usual toiletries.

Sadly I cant really relax over the Christmas break as I have exams for University in january and I have to study.



89
playsome
TinyMCE problem - editor imports theme stylesheet
  • 2010/11/17 16:44

  • playsome

  • Not too shy to talk

  • Posts: 197

  • Since: 2009/4/15


Hello all,

I am having a bit of a problem with tinymce editor, I think this is not new it just seems to be a bit of a bug.

The problem is that it imports the themes style.css, a theme I have developed for a client uses a dark background image which means the editor text area shows with a dark background image which is not good for editing with.

The editor is required in this project as the client does not know HTML to manually code structure, etc but it is not good to type onto a dark background image.

I have had a look around some files and I think it might be this function that loads the theme style.css (code is in tinymce.php)

function loadCss($css_file 'style.css')
    {
        static 
$css_url$css_path;

        if (!isset(
$css_url)) {
            
$css_url dirnamexoops_getcss($GLOBALS['xoopsConfig']['theme_set']) );
            
$css_path str_replace(XOOPS_THEME_URLXOOPS_THEME_PATH$css_url);
        }

        
$css = array();
        
$css[] = $css_url '/' $css_file;
        
$css_content file_get_contents$css_path '/' $css_file );

        
// get all import css files
        
if ( preg_match_all("~@import url((.*.css));~sUi"$css_content$matchesPREG_PATTERN_ORDER) ) {
            foreach( 
$matches[1] as $key => $css_import ) {
                
$css array_merge$css$this->loadCss$css_import) );
            }
        }
        return 
$css;
    }


I have tried commenting this out but it stops the editor from loading at all.

Anyone got any ideas on how to stop tinymce using xoops theme style.css?

Thanks



90
playsome
Re: problem with rmcommon
  • 2010/11/13 1:36

  • playsome

  • Not too shy to talk

  • Posts: 197

  • Since: 2009/4/15


Hello, I think to install rmcommon you have to overright a core file you should also have installed the redmexico admin gui as I think its required.

Make sure you have replaced any overwritten core file with the original file and uninstall redmexico gui as well.

I remember having trouble when trying to uninstall rmcommon from a test install, try the above and also remove all rmcommon files from the server and try that




TopTop
« 1 ... 6 7 8 (9) 10 11 12 ... 17 »



Login

Who's Online

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


Members: 0


Guests: 213


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