101
MikeShane
777 on folders ?
  • 2008/6/12 10:33

  • MikeShane

  • Community Support Member

  • Posts: 144

  • Since: 2008/1/5 2


My web server company is telling me they are going to change my 777 files to 775. Will they still funtion right with this change I only have 777 on the files that were stated on installs to be 777
Am I going to have problems if they make these changes?
Musicians for musicians entertaining the world, what starts as a dream can live in reality!



102
MikeShane
Re: help files tinymce
  • 2008/4/11 11:16

  • MikeShane

  • Community Support Member

  • Posts: 144

  • Since: 2008/1/5 2


Kewl that worked the help files are uploaded. Most of it works but the link for the plugins goes tohttp://tinymce.moxiecode.com/tinymce/docs/plugin_advlink.html

and this link is bad do you know where the restb of file is or where moiecode.com has files?
Musicians for musicians entertaining the world, what starts as a dream can live in reality!



103
MikeShane
two xoops sites
  • 2008/4/8 11:15

  • MikeShane

  • Community Support Member

  • Posts: 144

  • Since: 2008/1/5 2


We have two XOOPS sites built and ready to go just waiting for people to join one is
www.HomeGrownBands.com
a site for bands places they play and other music organizations to build their own web page and enter gigs in calendar. Our other site is
www.ShopYorkPa.com
a space for local merchants of York Pa to build their own web page and share local information. At the moment we are using the same theme on both (by 4thefort.com thanks) because we like the layout. Any sugestions complaits let me know

thanks MikeShane
Musicians for musicians entertaining the world, what starts as a dream can live in reality!



104
MikeShane
Re: help files tinymce
  • 2008/4/8 11:00

  • MikeShane

  • Community Support Member

  • Posts: 144

  • Since: 2008/1/5 2


o I'm looking for the help files. When you go to tinyeditor their is a ? Resized Image

this is supposed to take you to help files for tinymce but the folder is empty so blank page. I'm looking for the files top install in folder so my people have help files
thanks
Musicians for musicians entertaining the world, what starts as a dream can live in reality!



105
MikeShane
help files tinymce
  • 2008/4/8 1:48

  • MikeShane

  • Community Support Member

  • Posts: 144

  • Since: 2008/1/5 2


i'm looking for the help files tinymce anyone know where i can download them?
Also anyone have any luck getting the insert u-tube funtion to work on user page using tinymce
Musicians for musicians entertaining the world, what starts as a dream can live in reality!



106
MikeShane
Re: HomeGrownBands
  • 2008/3/14 13:03

  • MikeShane

  • Community Support Member

  • Posts: 144

  • Since: 2008/1/5 2


Ok did more changes I think we fixed broken pages
more sugestions? before we make our site release
Musicians for musicians entertaining the world, what starts as a dream can live in reality!



107
MikeShane
Re: url rewright
  • 2008/3/14 12:59

  • MikeShane

  • Community Support Member

  • Posts: 144

  • Since: 2008/1/5 2


I got this to work


Create a folder in your root and name it "users":

Create a .htaccess file under the "users" folder and paste this lines:



RewriteEngine on
RewriteCond %{REQUEST_URI} ^(^/users/)(.*)$
RewriteRule ^([^link].*)$https://xoops.org/users/?link=%2 [R,QSA,L]



Were "www.xoops.org" should be changed to fit your site

Create now a index.php file under the "users" folder and paste this lines:



<?php
include("../mainfile.php");
isset($_GET['link'])? $uname = $_GET['link'] : $uname = '';

if ($uname != ''){
$sql= sprintf("SELECT uid FROM %s WHERE (uname = '%s')",$xoopsDB->prefix("users"), $uname);
$result = $xoopsDB->queryF($sql);
list($uid) = $xoopsDB->fetchRow($result);
if ($uid > '0'){
$redirect_to = XOOPS_URL.'/userinfo.php?uid='.$uid;
} else {
$redirect_to = XOOPS_URL.'/index.php';
}

} else {
$redirect_to = XOOPS_URL.'/index.php';
}

header('location: '.$redirect_to);
?>


I'd like to be able to just put code into htaccess instead of having to use a users folder any sugestions
Musicians for musicians entertaining the world, what starts as a dream can live in reality!



108
MikeShane
Re: Change font in yogurt module
  • 2008/2/29 12:01

  • MikeShane

  • Community Support Member

  • Posts: 144

  • Since: 2008/1/5 2


It has four diferant css files Xoops, theme, yogurt and lightbox


<link rel="stylesheet" type="text/css" media="all" href="http://homegrownbands.com/xoops.css" />
<link rel="stylesheet" type="text/css" media="all" href="http://homegrownbands.com/themes/music/style.css" />
<!-- RMV: added module header -->

<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<script type="text/javascript" src="http://homegrownbands.com/include/xoops.js">
</script>
<script src="http://homegrownbands.com/modules/yogurt/include/jquery.js" type="text/javascript">
</script>
<script src="http://homegrownbands.com/modules/yogurt/include/jquery.lightbox-0.3.js" type="text/javascript">
</script>
<script src="http://homegrownbands.com/modules/yogurt/include/yogurt.js" type="text/javascript">
</script>
<link rel="stylesheet" href="http://homegrownbands.com/modules/yogurt/include/yogurt.css" type="text/css" />
<link rel="stylesheet" href="http://homegrownbands.com/modules/yogurt/css/jquery.tabs.css" type="text/css" />
<link rel="stylesheet" href="http://homegrownbands.com/modules/yogurt/css/jquery.tabs-ie.css" type="text/css" />
<link rel="stylesheet" href="http://homegrownbands.com/modules/yogurt/include/jquery.lightbox-0.3.css" type="text/css" />



how do I know which one it uses for this area is this a lightbox?
Musicians for musicians entertaining the world, what starts as a dream can live in reality!



109
MikeShane
Change font in yogurt module
  • 2008/2/28 19:19

  • MikeShane

  • Community Support Member

  • Posts: 144

  • Since: 2008/1/5 2


Using a dark (black) background theme the font in the accept friends request page is white and the background cell is white anyone have an idea how to change either the font or cell background color so the words can be read to accept or not friends request?
Musicians for musicians entertaining the world, what starts as a dream can live in reality!



110
MikeShane
HomeGrownBands
  • 2008/2/18 20:02

  • MikeShane

  • Community Support Member

  • Posts: 144

  • Since: 2008/1/5 2


Did some changes need XOOPS people feedback HomeGrownBands
Musicians for musicians entertaining the world, what starts as a dream can live in reality!




TopTop
« 1 ... 8 9 10 (11) 12 13 »



Login

Who's Online

240 user(s) are online (172 user(s) are browsing Support Forums)


Members: 0


Guests: 240


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