Home Forum Gallery Wiki CruiserFAQ Tech Links Product Reviews Store
IH8MUD.com
Go Back   IH8MUD.com > Social Forums > Chit-Chat Section




Reply
 
LinkBack (1) Thread Tools Display Modes
Old 04-23-08, 10:01 AM   #1 (permalink)
Poseidon, look at me

 
NaterGator's Avatar
 
Join Date: Oct 2006
Location: Tampa/Gainesville, FL
TLCA# 18767
Posts: 1,440
The Ultimate Website Help/Development Thread

I'm just going to go ahead and make this thread because people (especially TUTers who know) ask me from time to time for help fixing scripting (server-side and client-side) issues as well as general advice about the ins-and-outs of hosting, site maintenance, and the like.



So, if you are running a personal (or non-profit, or profitable yet beneficial to the cruiser community, club, etc) site and would like to hit me up for any free advice or ask any questions, I'll be more than happy to help to the best of my capacity.

I am quite familiar with LAMP (linux apache mysql php) server setup and administration, as well as familiar with PHP, XHTML, javascript, java, c/c++, MySQL, perl, some (limited) asp, flash, ajax, etc.

For example people often don't realize they are using very poor programming practices and unnecessarily increase the load on their server and the wait time on their site; typically it is easy to go in and say "ah, here are your 4 most major problems, fixing these will speed things up 400%".


So there you go. I'm not going to ignore questions elsewhere, but it will be simpler for myself and yourself to post them here, as well as reduce clutter (especially in TUT). Also, if you use firefox I am more than willing to take requests to develop greasemonkey scripts to make mud browsing better for yourself (for example: the TUT catsup minder, the script which patches back in the vB key listener so that ctrl+i,b,u work again, etc). I simply have a hard time anticipating what would be useful for people (and overall think the mud browsing experience is one of the best )

Let 'er rip. I realize this is probably going to be a low traffic thread, but I'll stay subscribed to it and try to help people out in a timely manner.




__________________
'96 LX450, 33" Revos, OME lifted, etc, etc
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde
Right-click image transloading made blindingly easy.
Quote:
Originally Posted by fsusteve View Post
What are you talking about bro, I'm a long time gator fan.......

WFC: 0473-9763-9112
NaterGator is offline   Reply With Quote



Old 04-23-08, 10:24 AM   #2 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Quote:
Originally Posted by NaterGator View Post
components/com_wrapper/wrapper.html.php
components/com_wrapper/wrapper.php


The error seems to lie therein
I did not see the first one, only the second. Is it possible that something else is adding the .html extension?

Here is the second one, and THANK YOU!

Code:
<?php

/**

* @version		$Id: wrapper.php 9764 2007-12-30 07:48:11Z ircmaxell $

* @package		Joomla

* @subpackage	Wrapper

* @copyright	Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.

* @license		GNU/GPL, see LICENSE.php

* Joomla! is free software. This version may have been modified pursuant

* to the GNU General Public License, and as distributed it includes or

* is derivative of works licensed under the GNU General Public License or

* other free or open source software licenses.

* See COPYRIGHT.php for copyright notices and details.

*/



// no direct access

defined( '_JEXEC' ) or die( 'Restricted access' );



/*

 * This is our main control structure for the component

 *

 * Each view is determined by the $task variable

 */

switch (JRequest::getCmd('task'))

{

	default:

		WrapperController::display();

		break;

}



/**

 * Static class to hold controller functions for the Wrapper component

 *

 * @static

 * @author		Johan Janssens <johan.janssens@joomla.org>

 * @package		Joomla

 * @subpackage	Wrapper

 * @since		1.5

 */

class WrapperController

{

	function display()

	{

		global $mainframe, $option;



		$document =& JFactory::getDocument();



		$menus	= &JSite::getMenu();

		$menu	= $menus->getActive();



		// Get the page/component configuration

		$params = &$mainframe->getParams();



		//set page title

		$document->setTitle($menu->name);



		$url = $params->def( 'url', '' );



		$row = new stdClass();

		if ( $params->def( 'add_scheme', 1 ) )

		{

			// adds 'http://' if none is set

			if ( substr( $url, 0, 1 ) == '/' )

			{

				// relative url in component. use server http_host.

				$row->url = 'http://'. $_SERVER['HTTP_HOST'] . $url;

			}

			elseif ( !strstr( $url, 'http' ) && !strstr( $url, 'https' ) ) {

				$row->url = 'http://'. $url;

			}

			else {

				$row->url = $url;

			}

		}

		else {

			$row->url = $url;

		}



		require_once (JPATH_COMPONENT.DS.'views'.DS.'wrapper'.DS.'view.php');

		$view = new WrapperViewWrapper();



		$view->assignRef('params'  , $params);

		$view->assignRef('wrapper' , $row);



		$view->display();

	}

}

?>

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-23-08, 10:44 AM   #3 (permalink)
Poseidon, look at me

 
NaterGator's Avatar
 
Join Date: Oct 2006
Location: Tampa/Gainesville, FL
TLCA# 18767
Posts: 1,440
Ok, do you know how to run SQL on the server, or do you know if you have phpMyAdmin installed?

__________________
'96 LX450, 33" Revos, OME lifted, etc, etc
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde
Right-click image transloading made blindingly easy.
Quote:
Originally Posted by fsusteve View Post
What are you talking about bro, I'm a long time gator fan.......

WFC: 0473-9763-9112
NaterGator is offline   Reply With Quote
Old 04-23-08, 10:47 AM   #4 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Quote:
Originally Posted by NaterGator View Post
Ok, do you know how to run SQL on the server, or do you know if you have phpMyAdmin installed?
Er, no and no.

I could probably install it.

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-23-08, 10:50 AM   #5 (permalink)
Poseidon, look at me

 
NaterGator's Avatar
 
Join Date: Oct 2006
Location: Tampa/Gainesville, FL
TLCA# 18767
Posts: 1,440
Quote:
Originally Posted by grrlscout89FJ62 View Post
Er, no and no.

I could probably install it.
Nah, no need. Give me a few minutes, I'm perusing the source of joomla as we speak

__________________
'96 LX450, 33" Revos, OME lifted, etc, etc
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde
Right-click image transloading made blindingly easy.
Quote:
Originally Posted by fsusteve View Post
What are you talking about bro, I'm a long time gator fan.......

WFC: 0473-9763-9112
NaterGator is offline   Reply With Quote
Old 04-23-08, 10:51 AM   #6 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Gotta love open source!

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-23-08, 11:17 AM   #7 (permalink)
Admin

 
woody's Avatar
 
Join Date: Jan 2002
Location: Appleton, WI
TLCA# 1548
Posts: 8,352
Garage
thanks for the past help you've offered on 'MUD...always good to know people smarter than yourself!

(BTW: check your SS expiry date )

__________________
Brian 'woody' Swearingen
Owner, IH8MUD.com
Owner, ROCKCRAWLER.com
Forum Questions? Click Here! .. .. .. .. 2009 IH8MUD Wheelin Schedule!

'America will never be destroyed from the outside. If we falter and lose our freedoms, it will be because we destroyed ourselves.' Abraham Lincoln

'Everyone wants to save the porpoises, but no one cares about the tuna'
woody is offline   Reply With Quote
Old 04-23-08, 11:47 AM   #8 (permalink)
Poseidon, look at me

 
NaterGator's Avatar
 
Join Date: Oct 2006
Location: Tampa/Gainesville, FL
TLCA# 18767
Posts: 1,440
Quote:
Originally Posted by woody View Post
thanks for the past help you've offered on 'MUD...always good to know people smarter than yourself!

(BTW: check your SS expiry date )
Man, many thanks woody! Totally not deserved but greatly appreciated. Though your post should say "always good to know people who are more familiar with computers than yourself!" since I'm pretty darn sure I'm not smarter



grrl, I'm still working on reverse engineering a few pieces of joomla, and then I'm going to put up a the code for a php file I'll need you to create/upload. It will help give me a better understanding of if this problem is a DB problem or coding error.

__________________
'96 LX450, 33" Revos, OME lifted, etc, etc
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde
Right-click image transloading made blindingly easy.
Quote:
Originally Posted by fsusteve View Post
What are you talking about bro, I'm a long time gator fan.......

WFC: 0473-9763-9112
NaterGator is offline   Reply With Quote
Old 04-23-08, 12:57 PM   #9 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Quote:
Originally Posted by NaterGator View Post
grrl, I'm still working on reverse engineering a few pieces of joomla, and then I'm going to put up a the code for a php file I'll need you to create/upload. It will help give me a better understanding of if this problem is a DB problem or coding error.
TOTALLY deserved

Hey, I can make you a superadmin through Joomla and/or give you the FTP info if you need it.

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-23-08, 01:03 PM   #10 (permalink)
Poseidon, look at me

 
NaterGator's Avatar
 
Join Date: Oct 2006
Location: Tampa/Gainesville, FL
TLCA# 18767
Posts: 1,440
grrl, I had to leave and meet with my professors but I had an epiphany while there (mainly that I was overthinking the problem; although the programming in joomla should have prevented this from ever happening)

This is blindingly simple to fix. The wrapper item is a loadable module, and you must have inadvertently enabled it without configuring it (it allows you to essentially drop another small page inside the menu bar on the left)

To fix this visit this link:
Cactus 4 Wheelers - Administration

Login as your admin account. Once you are logged in, on the top hover over "Modules" and then click "Site Modules". Somewhere down on that list you will see an item called "Wrapper". To the right of it you'll see an icon that looks like this:

Just click that little icon, refresh the main page, and see if that nagging little error message is gone

__________________
'96 LX450, 33" Revos, OME lifted, etc, etc
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde
Right-click image transloading made blindingly easy.
Quote:
Originally Posted by fsusteve View Post
What are you talking about bro, I'm a long time gator fan.......

WFC: 0473-9763-9112
NaterGator is offline   Reply With Quote
Old 04-23-08, 01:15 PM   #11 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
BRILLIANT!


It went a little different for me. Maybe we're looking at 2 different version of Joomla? Nonetheless, I just disabled the Wrapper, since I don't think I need it anyway, and that seems to have done the trick.

Thank you much!

I have a more complex puzzle, but it can wait for another day.

In the meantime, I think I'm gonna tinker with the various stylesheets (for the forum, the gallery, and the calendar) to get a more integrated look. Oh, and trying to figure out how to change the stupid title tag

I owe you a fruity beer (or 6)

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-23-08, 01:18 PM   #12 (permalink)
Poseidon, look at me

 
NaterGator's Avatar
 
Join Date: Oct 2006
Location: Tampa/Gainesville, FL
TLCA# 18767
Posts: 1,440
Glad it worked out. Yup, it looks like I pulled a mildly old version, but none-the-less you got it worked out

I'm always up for more complex puzzles, if nothing else it will give me time to mull over them.

__________________
'96 LX450, 33" Revos, OME lifted, etc, etc
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde
Right-click image transloading made blindingly easy.
Quote:
Originally Posted by fsusteve View Post
What are you talking about bro, I'm a long time gator fan.......

WFC: 0473-9763-9112
NaterGator is offline   Reply With Quote
Old 04-23-08, 01:27 PM
cruiser88
This message has been deleted by cruiser88. Reason: not here
Old 04-23-08, 02:14 PM   #13 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Quote:
Originally Posted by NaterGator View Post
Glad it worked out. Yup, it looks like I pulled a mildly old version, but none-the-less you got it worked out

I'm always up for more complex puzzles, if nothing else it will give me time to mull over them.
Well, if you must know...

I installed this bridge between the forum and the photo gallery, so that any registered user of the forum can contribute photos to the gallery:

SMF + G2 | Gallery

So, I sign into the forum, then click on the Gallery link. It prompts me for my password. When I enter it, it takes me to a blank page with this URL:

Login

If you need to try it out, I created a test account:

username: tester1
pass: tester1

Also, I don't know if it's important or not, but I also have a plugin in place that ports forum users into the Joomla membership list -- so there is one registration (the message boards) to use all of the features. The plugin is called JFusion:

Welcome to the Frontpage *

Like I said, no hurry, and thanks again.




* Apparently I'm not the only one who's having a hard time changing the title

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-23-08, 02:20 PM   #14 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Quote:
Originally Posted by grrlscout89FJ62 View Post
* Apparently I'm not the only one who's having a hard time changing the title
Fixed it! Google is my friend!

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-23-08, 02:59 PM   #15 (permalink)
Poseidon, look at me

 
NaterGator's Avatar
 
Join Date: Oct 2006
Location: Tampa/Gainesville, FL
TLCA# 18767
Posts: 1,440
Looks like PHP is exiting prematurely due to an error.

You'll need to be able to pull up your Apache error logs and see if PHP is reporting meaningful errors there.

__________________
'96 LX450, 33" Revos, OME lifted, etc, etc
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde
Right-click image transloading made blindingly easy.
Quote:
Originally Posted by fsusteve View Post
What are you talking about bro, I'm a long time gator fan.......

WFC: 0473-9763-9112
NaterGator is offline   Reply With Quote
Old 04-23-08, 03:18 PM   #16 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Quote:
Originally Posted by NaterGator View Post
Looks like PHP is exiting prematurely due to an error.

You'll need to be able to pull up your Apache error logs and see if PHP is reporting meaningful errors there.
hrmmm... any idea how I might access those?

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-23-08, 03:55 PM
LoveTractor
This message has been deleted by LoveTractor. Reason: Meh. Dumb joke.
Old 04-23-08, 08:37 PM   #17 (permalink)
Damn

 
johnny4ever's Avatar
 
Join Date: Jul 2004
Location: Central Texas
Posts: 327
My name is clunky HTML man. I love notepad.

Help me.........................

I need to revamp/completely overhaul my site.

I am also looking for more info on animating my avatar.
Animated gif? Do I need a PS plug in to animate?

__________________
01001010 00110100 01000101 00100000
00110001 00111001 00111001 00110111 00100000 01000110 01011010 01001010 00111000 00110000 00100000
____________________________________________
johnny4ever is offline   Reply With Quote
Old 04-24-08, 09:24 AM   #18 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Quote:
Originally Posted by johnny4ever View Post
My name is clunky HTML man. I love notepad.

Help me.........................

I need to revamp/completely overhaul my site.

I am also looking for more info on animating my avatar.
Animated gif? Do I need a PS plug in to animate?
A) learn CSS - if you know HTML, CSS is a breeze.

B) What version of Photoshop do you have? Any that has ImageReady included is all you need.

I can help with front-end stuff -- it's the guts of dynamic sites that I suck at.

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-24-08, 02:49 PM   #19 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Quote:
Originally Posted by grrlscout89FJ62 View Post
Well, if you must know...

I installed this bridge between the forum and the photo gallery, so that any registered user of the forum can contribute photos to the gallery:
OK, so forget all that jazz.

I uninstalled the Gallery bridge, and instead replaced it was a SMF gallery add-on:

SMF Gallery - Lite Edition

But the gallery link wasn't showing up I did as directed in this thread, and added that code snippet to the template file.

Gallery button

It still doesn't show up.

I also made sure that the permissions on the board were changed so that the link would be visible registered users and above.

No dice.

I think the add-on is working, because you can see the gap between "Profile" and "My Messages", where the link would appear. So I think it has something to do with the permissions.

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-24-08, 04:03 PM   #20 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Nate you're off the hook again!

I managed fixeded my gallery link problem -- 3rd piece of code's the charm!

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-24-08, 04:42 PM   #21 (permalink)
Turbo Diesel Lover

 
Tapage's Avatar
 
Join Date: Apr 2003
Location: Panamá
Posts: 11,423
Thanks dude .. as maybe you know I have a little ( compared to MUD ) forum here in Panamá in vBulletin no mayor problems at all ..

I just take the bluehost hosting coz I think it's good for me ( acept comments about this selection ) but have a limited time and knowledge about webpages how to desing ..

I just wanna make a new index for my page .. did you have a susgestion .. ?

BTW I'm Ferdora user ..

__________________
HJ-60 2H-T Intercooled Tencha
HDJ-80 1HD-T not stock at all ! Marilu
FZJ-80 1FZ-FE ready to Play ( wife rig ! )
Join us at our local Panamá Off Road Forum
Quote:
Originally Posted by crushers View Post
if you are achieveing the max boost then it isn't the boost that is going to kill your engine... it is your right foot.
Tapage is offline   Reply With Quote
Old 04-24-08, 04:42 PM   #22 (permalink)
Site Addict

 
WristPin's Avatar
 
Join Date: Sep 2005
Location: The NW, Cascade Mountian Range
Posts: 2,395
nate is like a right click ninja

__________________
Wristy
Quote:
Originally Posted by cruiser88 View Post
Jebus...
Quote:
Originally Posted by cruiser88 View Post
I like it when I can go out on the porch buck naked ...unroll it and take a wizz without somebody saying ......look john is alive and well
22RE Tech hotline- check the FAQ
WristPin is offline   Reply With Quote
Old 04-24-08, 09:44 PM   #23 (permalink)
Poseidon, look at me

 
NaterGator's Avatar
 
Join Date: Oct 2006
Location: Tampa/Gainesville, FL
TLCA# 18767
Posts: 1,440
Quote:
Originally Posted by grrlscout89FJ62 View Post
Nate you're off the hook again!

I managed fixeded my gallery link problem -- 3rd piece of code's the charm!
Sorry I was in Miami being trained for the SCM internship. Glad to hear you got it fixed though

__________________
'96 LX450, 33" Revos, OME lifted, etc, etc
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde
Right-click image transloading made blindingly easy.
Quote:
Originally Posted by fsusteve View Post
What are you talking about bro, I'm a long time gator fan.......

WFC: 0473-9763-9112
NaterGator is offline   Reply With Quote
Old 04-24-08, 09:58 PM   #24 (permalink)
Damn

 
johnny4ever's Avatar
 
Join Date: Jul 2004
Location: Central Texas
Posts: 327
Quote:
Originally Posted by grrlscout89FJ62 View Post
A) learn CSS - if you know HTML, CSS is a breeze.

B) What version of Photoshop do you have? Any that has ImageReady included is all you need.

I can help with front-end stuff -- it's the guts of dynamic sites that I suck at.
Really I just want to make my site look a little more pro without going overboard with bells and whistles. Right now my site is kinda 1993.

I would like to experiment with mouse over effects, small animations and image maps.

Scope out my diamond in the rough.
RoyT's

Be gentle.

__________________
01001010 00110100 01000101 00100000
00110001 00111001 00111001 00110111 00100000 01000110 01011010 01001010 00111000 00110000 00100000
____________________________________________
johnny4ever is offline   Reply With Quote
Old 04-24-08, 10:34 PM
johnny4ever
This message has been deleted by johnny4ever. Reason: oops
Old 04-24-08, 11:59 PM   #25 (permalink)
Poseidon, look at me

 
NaterGator's Avatar
 
Join Date: Oct 2006
Location: Tampa/Gainesville, FL
TLCA# 18767
Posts: 1,440
Quote:
Originally Posted by Tapage View Post
Thanks dude .. as maybe you know I have a little ( compared to MUD ) forum here in Panamá in vBulletin no mayor problems at all ..

I just take the bluehost hosting coz I think it's good for me ( acept comments about this selection ) but have a limited time and knowledge about webpages how to desing ..

I just wanna make a new index for my page .. did you have a susgestion .. ?

BTW I'm Ferdora user ..
Tapage, the major companies I've used are Dreamhost, 1and1, mediatemple, and sago networks.

For shared hosting I prefer dreamhost. I've had an account with them for a considerable amount of time and my server limits are very generous (to put it mildly)

What is the URL to your website?

__________________
'96 LX450, 33" Revos, OME lifted, etc, etc
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde
Right-click image transloading made blindingly easy.
Quote:
Originally Posted by fsusteve View Post
What are you talking about bro, I'm a long time gator fan.......

WFC: 0473-9763-9112
NaterGator is offline   Reply With Quote
Old 04-25-08, 12:16 AM   #26 (permalink)
Poseidon, look at me

 
NaterGator's Avatar
 
Join Date: Oct 2006
Location: Tampa/Gainesville, FL
TLCA# 18767
Posts: 1,440
Quote:
Originally Posted by johnny4ever View Post
Really I just want to make my site look a little more pro without going overboard with bells and whistles. Right now my site is kinda 1993.

I would like to experiment with mouse over effects, small animations and image maps.

Scope out my diamond in the rough.
RoyT's

Be gentle.
Johnny, the biggest leap you can make is to begin using tables for layout and CSS for formatting. There are a myriad of websites out there designed to help you get your feet wet, as well as examples and free templates. Google stuff like clean web design tutorial and snoop around. There are blogs and sites out there like www.aggropixel.com which gather other good resources for you. Your site lacks because the colors you chose do not fit very well (again, google color wheel, web color chooser, etc. There are some really cool tools which will help you find complimentary color schemes) and because your page does not lead the eye anywhere (there is no focal point)

Before you go into fancy DHTML / javascript effects I would consider making a mirror of your site (like oldsaladobakery.com/_testing/) and play around in there redesigning elements.

If I come across any websites in the future that I think you would be interested in I'll post them up here

__________________
'96 LX450, 33" Revos, OME lifted, etc, etc
Love the life you live, live the life you love. -Bob Marley
Selfishness is not living as one wishes to live, it is asking others to live as one wishes to live. -Oscar Wilde
Right-click image transloading made blindingly easy.
Quote:
Originally Posted by fsusteve View Post
What are you talking about bro, I'm a long time gator fan.......

WFC: 0473-9763-9112
NaterGator is offline   Reply With Quote
Old 04-25-08, 08:28 AM   #27 (permalink)
Turbo Diesel Lover

 
Tapage's Avatar
 
Join Date: Apr 2003
Location: Panamá
Posts: 11,423
Quote:
Originally Posted by NaterGator View Post
What is the URL to your website?
Hello NaterGator ..

4x4panama.com

Thanks for your recomendations .. at time I saw dreamhost but choose ( I'm not sure why ) Bluehost .. ( maybe for the Support Chat online )

Have a few myswl conection issues that actually dosen't affect my forum .. but looking forward on that.

__________________
HJ-60 2H-T Intercooled Tencha
HDJ-80 1HD-T not stock at all ! Marilu
FZJ-80 1FZ-FE ready to Play ( wife rig ! )
Join us at our local Panamá Off Road Forum
Quote:
Originally Posted by crushers View Post
if you are achieveing the max boost then it isn't the boost that is going to kill your engine... it is your right foot.
Tapage is offline   Reply With Quote
Old 04-25-08, 09:01 AM   #28 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Quote:
Originally Posted by johnny4ever View Post
Really I just want to make my site look a little more pro without going overboard with bells and whistles. Right now my site is kinda 1993.

I would like to experiment with mouse over effects, small animations and image maps.

Scope out my diamond in the rough.
RoyT's

Be gentle.
What Nate said. Here's a good site for learning CSS:

CSS Tutorial

You should also stick to the standard fonts. I don't have OldCentury, so I just got a boring font and it looks poopy.

That big image needs an alt tag.

Also, I think you updated the wrong metatag:

Code:
<meta http-equiv="Bakery, Coffee Shop, Coffee, Espresso, Latte, Cappuccino, Mocha, Java, Dougnuts, Donuts, Pastry, Cake, Pie, Pies, Cakes, Muffins, Coke, Dr-Pepper, Sprite, Lunch, Gumbo, Soup, Sandwich" content="text/html; charset=iso-8859-1">
It should look more like this:

Code:
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Roy T's Bakery : Salado, Texas</title>
<meta name="description" content="Roy T's Bakery, serving fresh salads, hand-tossed pizza, doughnuts,  sandwiches, and espresso. Salado, TX"/>
<meta name="keywords" content="Bakery, Coffee Shop, Coffee, Espresso, Latte, Cappuccino, Mocha, Java, Dougnuts, Donuts, Pastry, Cake, Pie, Pies, Cakes, Muffins, Coke, Dr-Pepper, Sprite, Lunch, Gumbo, Soup, Sandwich />
The current movement is to get away from formatting with tables, and instead use CSS positioning. But it is very tricky, and there are still many differences between how the different browsers render them. So for now, perhaps stick with tables.

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Old 04-25-08, 09:01 AM   #29 (permalink)
Forum Regular

 
Stumper's Avatar
 
Join Date: Sep 2003
Location: SLC UTAH
Posts: 158
Not sure who on here would be the best to ask, but we are looking for a complete revamp of our site. Need some good help, and we are definitely willing to pay. I need something that we can adjust and alter/update as needed ourselves. I just dont have the HTML skills to build up the front end, nor the time to do it. Handling the back end data, checkout, database stuff I can do.
Any leads or help would be appreciated. Looking to get it done quick....as in now. Let me know if any of you can help us out.

Thanks,

Russell

__________________
www.portal-tek.com

'94 FZJ80--OME, 315's, Portal-Tek Portals
'79 FJ40, 4" BDS, Raped Ape 2F, custom rust
Portal-Tek Your Next Generation Axles
russ@portal-tek.com
SLC,UT
Stumper is offline   Reply With Quote
Old 04-25-08, 11:43 AM   #30 (permalink)
FML

 
grrlscout89FJ62's Avatar
 
Join Date: Aug 2004
Location: Glendale, AZ
Posts: 704
Alright I've got a new one.

Remember that JFusion thing I installed? It's supposed to make it so that when someone signs up for the message boards, they are automatically signed up for the Joomla system too.

It doesn't appear to be working anymore :(

Using the login tester function, I got the following report:


Code:
- Performing the JFusion Authentication function for user:tester1
- JFusion is enabled
- using the forum database to check the users password
- the forum filtered username is: tester1
stdClass Object ( [userid] => 4 [username] => tester1 [name] => tester1 [email] => highskydesign@yahoo.com [password] => df0376200e266b0b012ed788323dd21c83630a3d [password_salt] => 49a1 [block] => 0 ) - the userinfo object contains the array:1
found the user in the forum database
- starting to loop through the different password encryption methods
- database password: df0376200e266b0b012ed788323dd21c83630a3d and smf password: df0376200e266b0b012ed788323dd21c83630a3d
- found a matching password


- Performing the JFusion User function
- JFusion integration enabled
- no entry found in the lookup table, checking in the Joomls user table directly
- the user does NOT exist in the Joomla database
- auto user mirroring is turned on, therefore we will create a new Joomla user

Warning: mysql_real_escape_string() expects parameter 1 to be string, array given in /home/content/p/a/g/pageweb77/html/joomla/libraries/joomla/database/database/mysql.php on line 193

Fatal error: Call to a member function on a non-object in /home/content/p/a/g/pageweb77/html/joomla/administrator/components/com_jfusion/admin.login_checker.php on line 197

__________________
Find unique Land Cruiser tees and other cool stuff here
grrlscout89FJ62 is offline   Reply With Quote
Reply

Bookmarks


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


LinkBacks (?)
LinkBack to this Thread: http://forum.ih8mud.com/chit-chat-section/217766-ultimate-website-help-development-thread.html
Posted By For Type Date
Fully Automatic Factory Service Manual (FSM) Downloading - IH8MUD™ Forums This thread Refback 09-26-08 10:23 AM







All times are GMT -7. The time now is 01:24 AM.


vBulletin® v3.8.4 ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.1
Clubs, Garage Plus vBulletin Plugins by Drive Thru Online, Inc.
©2000-2009 by IH8MUD Inc. - ALL RIGHTS RESERVED


Thanks to all those who have contributed!
One of the largest message boards on the web !