TutorialMS Community Forum

Full Version: [SOLVED] Some problems...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello all

i hope i write in a good category Smile

My site is http://www.tutorialspace.ro i will write also in Showcase, but isn't finished. I have something problems, with some links.

http://tutorialspace.ro/que/ (in my site: In curs de postare)
http://tutorialspace.ro/pending/ (in my site:In curs de aprobare)

My MOD_REWRITE_ON is set to NO, i was set also to Yes, but this links don't works. Also the link to write ( http://tutorialspace.ro/submit/ ) but, i talk in the moment when i push the "write" button without set the category/subcategory. It works when i chose the category... but if a user forget to set......it's appers an 404 error page Smile it's don't OK.

Also... Scott, i want to talk with you... for an Romanian Language Implementation for TMS, if you want. (you can give me an e-mail address? or something else?)

i think that my problem is .htaccess file. It's empty, and i don't know what i can write Smile
Hi. Here's the original .htaccess file:
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^view_tutorials/([^/]+)(/([^/]+))(/([^/]+))?/?$ view_tutorials.php?page=$5&categorey=$1&scategorey=$3 [QSA]
RewriteRule ^submit/?$ submit.php [QSA]
RewriteRule ^contact_us([/]?)$ contact_us.php [QSA]
RewriteRule ^help([/]?)$ help.php [QSA]
RewriteRule ^index([/]?)$ index.php [QSA]
RewriteRule ^submit2([/]?)$ submit2.php [QSA]
RewriteRule ^write([/]?)$ write.php [QSA]
RewriteRule ^tutorials(/([^/]+))?/?$ tutorials.php?page=$2 [QSA]
RewriteRule ^pending/?$ tutorials.php?special=2 [QSA]
RewriteRule ^que/?$ tutorials.php?special=3 [QSA]
RewriteRule ^tutorial_out/([^/]+)(/([^/]+))?/?$ tutorial_out.php?tutname=$3&id=$1
RewriteRule ^affiliate_out/([^/]+)/? affiliate_out.php?id=$1
RewriteRule ^affiliate_in/([^/]+)/? affiliate_in.php?id=$1
RewriteRule ^sourcesite/([^/]+)([/]?)$ sourcesite.php?source=$1
RewriteRule ^read_tutorial/([^/]+)(/([^/]+))?/?$ read_tutorial.php?id=$1&page=$3
RewriteRule ^users/([^/]+)/? users.php?userid=$1
RewriteRule ^tutorial_details/([^/]+)(/([^/]+))?/?$ tutorial_details.php?tutname=$3&tutid=$1
RewriteRule ^register/? register.php
</IfModule>
If your mod_rewrite is off:

http://tutorialspace.ro/pending/
goes to:
http://www.tutorialspace.ro/tutorials.php?special=2

http://tutorialspace.ro/pending/
goes to:
http://www.tutorialspace.ro/tutorials.php?special=2

Hope this helps.
Hi, again. I thought I'd play with Google translate to view your site:
http://translate.google.com/translate?u=...l=ro&tl=en

Apropo. Bun?? culori. Foarte usor de pe ochi. Big Grin
Oh thank you.... Smile

That right words are: Apropo. Bune culori. Foarte usoare pentru ochi.

Google didn't translate very wellSmile My problem is solved. I wait a Scott answer, about the romanian language for TMS.

A question... do you like the banner?
Hi. I'm glad I didn't start an international incident with the Google translation :o

I like the banner. It's unique. The only issue is at 1300px it extends off the right of the screen of the monitor. I run one at 1024 and a second at 1152, and 1024 is still a popular resolution.

What if you cropped off the extra pattern and remade logo_pattern.jpg at 900x112, then took a section of the pattern at, say, 100x112 and call it logo_piece.jpg

Then in your css, edit the following:

Code:
#container {
    width: 900px;
    margin: 0 auto;
}
#headercontainer {
    background: url(http://tutorialspace.ro/images/logo_pattern.jpg) repeat-x;
    height: 112px;
    width: 100%;
    text-align: center;
}
change to

Code:
#container {
    background: url(http://tutorialspace.ro/images/logo_pattern.jpg) repeat-x;
    width: 900px;
    height: 112px;
    margin: 0 auto;
}
#headercontainer {
    background: url(http://tutorialspace.ro/images/logo_piece.jpg) repeat-x;
    height: 112px;
    width: 100%;
    text-align: center;
}
I think that might allow the full banner to show, and preserve the pattern. Let me know what you think.
Reference URL's