Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Off Topic Discussions > Webmasters Area

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 12-05-2012, 04:16 PM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 96,114
Tequila is on a distinguished road
Default Opinions Please

This is still a Work In Progress!
I'm running a test on how this new site looks. I also want opinions on the information provided, and the basic set up.

http://wip.guild-ed.com - not the final URL, but please bear with it.

If you can think of anything that I'm missing please feel free to post it. Or if you think of any questions for a FAQ please let me know.

Thanks in advance!
__________________
Artist. Designer. Gamer. Mother.
[portfolio] [tarot] [Rune Hollow] [freebies]
Reply With Quote
  #2  
Old 12-05-2012, 04:51 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 327,450
Hall of Famer is on a distinguished road
Default

It looks quite cute and unique I must say, if theres anything you can make it better, well... You may want to add something to the background that surrounds the main block so it does not look blank. Thats just me though, the site is well-designed already so its difficult to be picky. XD
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #3  
Old 12-08-2012, 08:43 AM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 96,114
Tequila is on a distinguished road
Default

Hm, I was thinking about somehow adding in fish and other things you'd see in a river, and that when you scroll it makes them "swim" around the content block.

I could also do a less transparent border section... where did I find that code again. ;3

I was thinking though, for new versions of the script (when it comes to templates) we could use the scrollbar code like I have on site. ;3
__________________
Artist. Designer. Gamer. Mother.
[portfolio] [tarot] [Rune Hollow] [freebies]
Reply With Quote
  #4  
Old 12-08-2012, 10:28 AM
powerchaos's Avatar
powerchaos powerchaos is offline
WebMaster
 
Join Date: May 2008
Posts: 130
Gender: Male
Credits: 9,934
powerchaos
Send a message via AIM to powerchaos Send a message via MSN to powerchaos
Default

the site looks nice
it is easy to navigate

the only part that is missing are seo links , but that is work for later

here you have a code you can use for the links in case you switch to seo links
put it in htacces , and be sure that mod_rewrite is enabled

Code:
RewriteEngine On
Options +FollowSymLinks #is not always needed , if it provide erros then disable it
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^about/([a-zA-Z0-9_-]+)$ about.php?$1
to use , just type in www.yoursite/about/storm

then the storm page will open

for the other pages use the same way

on that way you can keep the page in a single page and let the users think it are differend pages (also better for google )

Greetings From PowerChaos
Reply With Quote
  #5  
Old 12-12-2012, 06:19 PM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 96,114
Tequila is on a distinguished road
Default

Quote:
Originally Posted by powerchaos View Post
the site looks nice
it is easy to navigate

the only part that is missing are seo links , but that is work for later

here you have a code you can use for the links in case you switch to seo links
put it in htacces , and be sure that mod_rewrite is enabled

Code:
RewriteEngine On
Options +FollowSymLinks #is not always needed , if it provide erros then disable it
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^about/([a-zA-Z0-9_-]+)$ about.php?$1
to use , just type in www.yoursite/about/storm

then the storm page will open

for the other pages use the same way

on that way you can keep the page in a single page and let the users think it are differend pages (also better for google )

Greetings From PowerChaos
I'd have to see how it would work with this style of coding:
PHP Code:
<?php if(!isset($_POST['submit'])) { ?>
<h1>lightningmermaid.me Policies</h1>
<p>Thank you for visiting <b>http://www.lightningmermaid.me</b>.</p>
<p align="center">Please choose the policy you wish to read about.<br />
<a href="?fairuse"><img src="images/fairuse.png" alt="Fair Use Policy" /></a> <a href="?privacy"><img src="images/privacy.png" alt="Privacy Policy" /></a> <a href="?stock"><img src="images/stockpolicy.png" alt="Stock Photography Restrictions" /></a> <a href="?booking"><img src="images/bookingpolicy.png" alt="Booking Policy" /></a>
<? } if($_SERVER['QUERY_STRING'] == "fairuse") { ?>
The file ends with this string as well:
PHP Code:
<?php } include('footer.php'); ?>
__________________
Artist. Designer. Gamer. Mother.
[portfolio] [tarot] [Rune Hollow] [freebies]
Reply With Quote
  #6  
Old 12-12-2012, 10:54 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 327,450
Hall of Famer is on a distinguished road
Default

Well by looking at the above code in html file makes me more convinced that we should use Smarty for this product. PHP as a templating language just cant get more ugly, writing PHP code in conjunction with HTML is gonna make the script look so unreadable.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #7  
Old 12-13-2012, 12:22 PM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 96,114
Tequila is on a distinguished road
Default

Quote:
Originally Posted by Hall of Famer View Post
Well by looking at the above code in html file makes me more convinced that we should use Smarty for this product. PHP as a templating language just cant get more ugly, writing PHP code in conjunction with HTML is gonna make the script look so unreadable.
Yeah, this variant is very messy. I may change tactics though, who knows. I've always admired the page.php?section statement though. ;3
__________________
Artist. Designer. Gamer. Mother.
[portfolio] [tarot] [Rune Hollow] [freebies]
Reply With Quote
  #8  
Old 12-13-2012, 12:35 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 327,450
Hall of Famer is on a distinguished road
Default

Well with Smarty things will get a lot neater, consider this:

PHP Code:
<html>
  <
head>
      <
title>{$browser_title}</title
  </
head>
  <
body>
       <
p>{$banner_image}</p>
       <
h1>{$document_title}</h1>
       <
p>{$document_content}</p>
  </
body>
</
html
Without smarty you write:

PHP Code:
<html>
  <head>
      <title><?php echo $browser_title?></title> 
  </head>
  <body>
       <p> <?php echo $banner_image?></p>
       <h1><?php echo $document_title?></h1>
       <p><?php echo $document_content;?></p>
  </body>
</html>
Now it should be all clear. XD PHP is not a good templating language, although it can be used as one(lol its main focus is the server-side programming). With Smarty, the code becomes shorter and more importantly, more pleasant to the eye. XD
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #9  
Old 12-13-2012, 12:45 PM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 96,114
Tequila is on a distinguished road
Default

Hmm, I may see how smarty likes my mermaid site. I finally came up with a tail design I like (yes this will be me actually swimming in a mermaid tail! I promise pics and video as soon as I get the projects done!) that is viewable here http://lightningmermaid.tumblr.com/post/37802436810
__________________
Artist. Designer. Gamer. Mother.
[portfolio] [tarot] [Rune Hollow] [freebies]
Reply With Quote
  #10  
Old 12-13-2012, 02:40 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 327,450
Hall of Famer is on a distinguished road
Default

Oh great, have fun playing with Smarty. Once you get used to it you'd be eager to implement in every template you create. XD
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
Reply

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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Opinions Please (card design) Tequila Other Chat 6 05-02-2013 07:14 PM
Opinions on selling adoptables RoconzaArt Adoptables Buzz 10 02-04-2011 06:12 AM
Opinions on click levels RoconzaArt Adoptables Buzz 10 01-25-2011 11:46 AM
Opinions on Progress RoconzaArt Art Gallery 9 01-20-2011 10:38 PM
What should I code next? Opinions Please! BMR777 Other Chat 29 07-14-2008 04:15 AM


All times are GMT -5. The time now is 11:50 AM.

Currently Active Users: 459 (0 members and 459 guests)
Threads: 4,080, Posts: 32,024, Members: 2,016
Welcome to our newest members, jolob.
BETA





What's New?

What's Hot?

What's Popular?


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
vBCommerce I v2.0.0 Gold ©2010, PixelFX Studios
vBCredits I v2.0.0 Gold ©2010, PixelFX Studios
Emoticons by darkmoon3636