Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

DimiTech.eu - New design, new extras

Asked Modified Viewed 11,615 times
S
StoyaN
S
StoyaN 10
  • Member, joined since
  • Contributed 162 posts on the community forums.
  • Started 37 threads in the forums
  • Started this discussions
asked
Member

Hi guys! My site is in action again! http://www.dimitech.eu/ This time the site is in English and have much software, hardware and IT news. Check it out and tell me your opinions :)

PS. I will be very grateful if you like my facebook page or become follower on twitter:
http://www.facebook.com/dimitech.eu
https://twitter.com/dimitech_eu
0 replies

24 posts

S
StoyaN
S
StoyaN 10
  • Member, joined since
  • Contributed 162 posts on the community forums.
  • Started 37 threads in the forums
  • Started this discussions
answered
Member

Quote

khaman wrote:

Looks great, simple and very professional 10/10!. This is how PF themes should look like. Is it custom made theme?


It's wordpress theme actually. I just made it to work with php-fusion.
0 replies
B
BlackDragon
B
http://www.bolja-buducnost.com.ba My best PHP-Fusion design.
  • Member, joined since
  • Contributed 88 posts on the community forums.
  • Started 14 threads in the forums
answered
Member

@StoyaN Can you explain me how you make to list just news from one category? And how you make start page like this?
If you can share that future with me.

Site is awesome, I bookmark them :) Rating: 10/10
0 replies
S
StoyaN
S
StoyaN 10
  • Member, joined since
  • Contributed 162 posts on the community forums.
  • Started 37 threads in the forums
  • Started this discussions
answered
Member

Well I copied viewpage.php, removed all code that i didn't need i make it how i want exactly.

For the separated news categories, i copied news.php in software.php for example, and in every sql query added "WHEN news_cat=14" (example again).

That's it! It's not much complicated. :)
0 replies
H
Homdax
H
Homdax 10
  • Fusioneer, joined since
  • Contributed 2,246 posts on the community forums.
  • Started 108 threads in the forums
answered
Fusioneer

:|
Looks great yet I can't grasp how you guys do it. I suck.
There is of course a decent amount of content, which is excellent.

Just to have the forum latest posts in a side panel is genius.
And popular software (I assume thats download counts) in the same way.

Please release the theme for download if you haven't already.
0 replies
S
StoyaN
S
StoyaN 10
  • Member, joined since
  • Contributed 162 posts on the community forums.
  • Started 37 threads in the forums
  • Started this discussions
answered
Member

The theme is very hardcoded right now. I will try to make it more fusion-like and then i will post it here.

Also, what's so hard with having the latest forum posts in a side panel? or you're just mocking me :D. And for the popular software you're right - most downloaded software is shown in the panel.

BTW. Tell me if you find any typos in the site. My English is not very good :(
0 replies
B
BlackDragon
B
http://www.bolja-buducnost.com.ba My best PHP-Fusion design.
  • Member, joined since
  • Contributed 88 posts on the community forums.
  • Started 14 threads in the forums
answered
Member

@StoyaN
Can you attach to me your viewpage and software page for example how I need to use that. Sorry but I am just start learning PHP :S And I am not sure how use that :S
0 replies
S
StoyaN
S
StoyaN 10
  • Member, joined since
  • Contributed 162 posts on the community forums.
  • Started 37 threads in the forums
  • Started this discussions
answered
Member

I'm sorry but i cant give you these files. You can try doing them yourself ;)
0 replies
B
BlackDragon
B
http://www.bolja-buducnost.com.ba My best PHP-Fusion design.
  • Member, joined since
  • Contributed 88 posts on the community forums.
  • Started 14 threads in the forums
answered
Member

Can you type me here, where I need to put code inside example: software.php . Just type what code I need to put and where. I understand why you cant give me your files :). Please man I just need for my website to have listed news from specific category :).

Regards,
BlackDragon
0 replies
S
smokeman
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
answered
Veteran Member

Quote

BlackDragon wrote:
Please man I just need for my website to have listed news from specific category :).

I put something together for you. Use this code in a center panel:

$cat = "2"; // News category id
$limit = "5"; // Number of news shown

$result = dbquery(
        "SELECT tn.*, tc.*, tu.user_id, tu.user_name, tu.user_status
        FROM ".DB_NEWS." tn
        LEFT JOIN ".DB_USERS." tu ON tn.news_name=tu.user_id
        LEFT JOIN ".DB_NEWS_CATS." tc ON tn.news_cat=tc.news_cat_id
        WHERE ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().")
        AND (news_end='0'||news_end>=".time().") AND news_draft='0'
        AND news_cat='".$cat."'
        GROUP BY news_id
        ORDER BY news_sticky DESC, news_datestamp DESC LIMIT $limit"
        );

opentable("News");
if(dbrows($result) != 0) {
  echo "<table width='100%' cellpadding='0' cellspacing='0'>\n<tr>\n";
  while($data = dbarray($result)) {
    $date = $data['news_datestamp'];
    $n_date = showdate("%d/%m/%y-%H.%I", $date);
    echo "<td class='small' align='center'><a href='".BASEDIR."news.php?readmore=".$data['news_id']."' title='".$data['news_subject']."' class='side'><img src='".get_image("nc_".$data['news_cat_name'])."' alt='".$data['news_cat_name']."' /></a><br />\n";
    echo "<span style='background:#999; color:#fff; height:24px; padding:5px;'>".$n_date."</span><br /><br />";
    echo "<a href='".BASEDIR."news.php?readmore=".$data['news_id']."' title='".$data['news_subject']."' class='side'><b>".$data['news_subject']."</b></a>\n";
    echo "</td>\n";
  }
echo "</tr>\n</table>\n";
}
closetable();

Edit these two lines:

Quote

$cat = "2"; // News category id
$limit = "5"; // Number of news shown


For another time then make your own thread for your support questions..
0 replies
J
jikaka
J
jikaka 10
www.rusfusion.ru - russian nss
  • Veteran Member, joined since
  • Contributed 946 posts on the community forums.
  • Started 82 threads in the forums
answered
Veteran Member

nice work!
very good!
0 replies
A
Ankur
A
Ankur 10
Hi! Its me, Ankur Thakur! smile
  • Veteran Member, joined since
  • Contributed 1,277 posts on the community forums.
  • Started 60 threads in the forums
answered
Veteran Member

Really man... I can observe you passion towards the website and fusion :D

Hats off to the work done on the site ;) Impressive ! Well Done :)

10/10 !
0 replies
S
StoyaN
S
StoyaN 10
  • Member, joined since
  • Contributed 162 posts on the community forums.
  • Started 37 threads in the forums
  • Started this discussions
answered
Member

Thank you guys! I really appreciate it! :)
0 replies
B
BlackDragon
B
http://www.bolja-buducnost.com.ba My best PHP-Fusion design.
  • Member, joined since
  • Contributed 88 posts on the community forums.
  • Started 14 threads in the forums
answered
Member

@smokeman sorry because I spam this thread :S.
And thanks a lot for that :) :)
0 replies
— 3 months later —
S
StoyaN
S
StoyaN 10
  • Member, joined since
  • Contributed 162 posts on the community forums.
  • Started 37 threads in the forums
  • Started this discussions
answered
Member

I made some improvements :) Tell me what you think - http://www.dimitech.eu
0 replies
— 1 month later —
M
MattMadsen
M
Facebook site
https://www.facebook.com/Detherersjovt
The funniest facebook page in the world
  • Member, joined since
  • Contributed 63 posts on the community forums.
  • Started 15 threads in the forums
answered
Member

This is the finest and nicest Php fusion site I ever seen. 10/10 It's crazy how cool it is. :)
0 replies
H
Homdax
H
Homdax 10
  • Fusioneer, joined since
  • Contributed 2,246 posts on the community forums.
  • Started 108 threads in the forums
answered
Fusioneer

I have to agree with Matt.

Unable to register on the site due to site email not being sent.

I would like to download an check out the theme layout a bit better, can you provide me with a link, or register me?
Edited by Homdax on 31-05-2012 12:49,
0 replies
S
spunk
S
spunk 10
www.duesseltag.de/../../images/banner/banner209x69.png
  • Member, joined since
  • Contributed 92 posts on the community forums.
  • Started 6 threads in the forums
answered
Member

Yes, this is a very nice site!

Can anybody tell me where i can find the "Latest posts" and "Top 5 posters" Panels?
0 replies
A
afoster
A
  • Senior Member, joined since
  • Contributed 725 posts on the community forums.
  • Started 128 threads in the forums
answered
Senior Member

Sending an email to the administrator does not work either. Perhaps he has shut down new registrations?
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

I have the guy on Facebook Richard I will let you know soon.
0 replies
S
spunk
S
spunk 10
www.duesseltag.de/../../images/banner/banner209x69.png
  • Member, joined since
  • Contributed 92 posts on the community forums.
  • Started 6 threads in the forums
answered
Member

The contact.php does not work either.

I have contact Dimi by e-mail.
0 replies

Category Forum

Post Your Site

Labels

None yet

Statistics

  • Views 0 views
  • Posts 24 posts
  • Votes 0 votes
  • Topic users 11 members

11 participants

H
H
Homdax 10
  • Fusioneer, joined since
  • Contributed 2,246 posts on the community forums.
  • Started 108 threads in the forums
C
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
S
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
A
A
  • Senior Member, joined since
  • Contributed 725 posts on the community forums.
  • Started 128 threads in the forums
S
S
StoyaN 10
  • Member, joined since
  • Contributed 162 posts on the community forums.
  • Started 37 threads in the forums
  • Started this discussions
K
K
------------------------------
PHP-Fusion PL Crew | Spam Cop | My Site
  • Senior Member, joined since
  • Contributed 244 posts on the community forums.
  • Started 23 threads in the forums
M
M
Facebook site
https://www.facebook.com/Detherersjovt
The funniest facebook page in the world
  • Member, joined since
  • Contributed 63 posts on the community forums.
  • Started 15 threads in the forums
J
J
jikaka 10
www.rusfusion.ru - russian nss
  • Veteran Member, joined since
  • Contributed 946 posts on the community forums.
  • Started 82 threads in the forums
S
S
spunk 10
www.duesseltag.de/../../images/banner/banner209x69.png
  • Member, joined since
  • Contributed 92 posts on the community forums.
  • Started 6 threads in the forums
A
A
Ankur 10
Hi! Its me, Ankur Thakur! smile
  • Veteran Member, joined since
  • Contributed 1,277 posts on the community forums.
  • Started 60 threads in the forums
B
B
http://www.bolja-buducnost.com.ba My best PHP-Fusion design.
  • Member, joined since
  • Contributed 88 posts on the community forums.
  • Started 14 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet