Zymic Forums

Webmaster resources

Zymic IRC Server

Chat in real time at irc.zymic.com - Learn More

Welcome

Welcome to the Zymic webmaster forums. Our forums are here to provide people the free ability to discuss a range of websites related topics such as design, development coding and marketing.

In order to post you will need to register for a zymic account or if you already have one simply login by using the form on the left.

left Zymic Webmaster ForumsWeb Design & DevelopmentGeneral Web Design Discussion right
left right
nitsuarox
post Nov 30 2007, 04:28 PM
Post #1


Ninja
***

Group: Members
Posts: 270
Joined: 24-October 07
From: My house
Member No.: 1,825



since zymics mysql stuff died hunter.gif and keeps going up and down i am creating a php CMS

if you wanna see my project go to http://mylittlecms.zzl.org/ i have not set up a demo YET but there will be one soon

and it can be EASILY integrated into any html themes such as the ones on zymic
Go to the top of the page 
 
  + Quote Post
2 Pages V   1 2 >  
Start new topic
Replies (1 - 19)
Alex
post Nov 30 2007, 04:33 PM
Post #2


zIRC Network Admin
*******

Group: Administrators
Posts: 660
Joined: 10-March 07
From: Swindon, Wilts, UK
Member No.: 6



Seems a bit early to conclude that MySQL is dead forever. Anyhoo, good luck with the project - but I'll reserve judgement until I see some source code. It's not the most marketable idea, since an RDBMS gives you significant optimisations and abstraction, but some people without access to one might be interested.
Go to the top of the page 
 
  + Quote Post
xire
post Dec 2 2007, 02:43 AM
Post #3


Ninja
***

Group: Members
Posts: 106
Joined: 8-November 07
From: the universe
Member No.: 2,559



Its gonna be hard to beat Pluck CMS. Pluck is THE BEST flat-file CMS I've ever seen. Plus its open source.

...just saying...
Go to the top of the page 
 
  + Quote Post
EMOruffino
post Dec 2 2007, 03:39 AM
Post #4


they call me ruffi
*******

Group: Moderators
Posts: 1,651
Joined: 19-September 07
From: Hell Paso
Member No.: 245



too bad cURL and fsock arnt open, then people could use a external server until everything is fixed
Go to the top of the page 
 
  + Quote Post
nitsuarox
post Dec 10 2007, 12:38 AM
Post #5


Ninja
***

Group: Members
Posts: 270
Joined: 24-October 07
From: My house
Member No.: 1,825



I just released beta 0.1!
Go to the top of the page 
 
  + Quote Post
Paranoid
post Dec 11 2007, 01:46 AM
Post #6


Super Ninja
****

Group: Members
Posts: 385
Joined: 2-December 07
From: Missoula, Montana
Member No.: 3,909



Keyword "Beta"?
Go to the top of the page 
 
  + Quote Post
XyberForce
post Dec 11 2007, 03:32 AM
Post #7


Super Duper Ninja
*****

Group: Members
Posts: 453
Joined: 20-September 07
From: Houston, TX
Member No.: 290



Dude I'm truly excited for this! Finally, a CMS that won't the user down with all this MySQL stuffing.
Go to the top of the page 
 
  + Quote Post
MrCracker
post Dec 11 2007, 03:07 PM
Post #8


Ninja
***

Group: Members
Posts: 202
Joined: 19-September 07
From: Earth
Member No.: 42



go to login page and login
user: <script>alert(/mrcrackerwashere/);</script>
pass: <script>alert(/mrcrackerwashere/);</script>

lol

by the way whats this:

var ipaddress = '74.92.3.77'; var browser = 'MSIE 6.0'; var operatingsystem = 'Windows XP SP2'; var countrylanguage = 'en-us'; var referer = escape(document.referrer); var screenresolution = screen.width+'x'+screen.height; var colordepth = screen.colorDepth; var url = location.href; init_counter(); function init_counter() { var clickscript = new Image(); clickscript.src = 'http://www.countall.com/count2.php?hit=1&u=4177&title=http://mylittlecms.zzl.org&ipaddress='+ ipaddress +'&browser='+ browser +'&operatingsystem='+ operatingsystem +'&countrylanguage='+ countrylanguage +'&screenresolution='+ screenresolution +'&colordepth='+ colordepth +'&referer='+ referer +'&url='+ url; startclicklog(); } function startclicklog() { if (typeof document.onmousedown == 'function') { currentFunc = document.onmousedown; document.onmousedown = function(e) { catchactivity(e); return currentFunc(e); } } else { document.onmousedown = catchactivity; } } function findlink(el) { var tagName = 'A'; var parent = el.parentNode; if (el.tagName != 'IMG') var df = el.href; if (!df&&parent) { if (parent.tagName==tagName) return parent.href; else return findlink(parent); } else return df; } function catchactivity(e) { try { if (e == undefined) e = window.event; if (e.srcElement) href = findlink(e.srcElement); else href = findlink(e.target); if (href) var clickscript = new Image(); clickscript.src = 'http://www.countall.com/count2.php?hit=0&u=4177&title=http://mylittlecms.zzl.org&ipaddress='+ ipaddress +'&url='+ url +'&href='+ href; var href = ''; } catch(e) { } return true; } document.write(''); document.write('');
Go to the top of the page 
 
  + Quote Post
IamShipon1988
post Dec 11 2007, 05:37 PM
Post #9


Outrageously Uber Ninja
*******

Group: Moderators
Posts: 1,562
Joined: 19-September 07
From: Rochester, NY
Member No.: 86



Question -

How do you plan on storing the information, as a text/html file on a folder? Wouldn't that be unsecure?

MrCracker -
He logged your information in...he's going to hack you now...muhahahaha...lol...just joking laugh.gif
Go to the top of the page 
 
  + Quote Post
Alex
post Dec 11 2007, 05:51 PM
Post #10


zIRC Network Admin
*******

Group: Administrators
Posts: 660
Joined: 10-March 07
From: Swindon, Wilts, UK
Member No.: 6



When it comes down to it MySQL stores data in files too, and it handles access levels within the RDBMS. The issue is simply how you protect them, you can do things like placing the data files below the document root or using .htaccess directives to protect a data directory. You can also save them as PHP files and include a die() at the top of the page in such a way that includes from the CMS are not killed, but when people try to view the data file they are.
Go to the top of the page 
 
  + Quote Post
XyberForce
post Dec 12 2007, 12:42 AM
Post #11


Super Duper Ninja
*****

Group: Members
Posts: 453
Joined: 20-September 07
From: Houston, TX
Member No.: 290



Question -- How do I login to the admin? The userpwd.txt file's contents are not working.
Go to the top of the page 
 
  + Quote Post
Paranoid
post Dec 12 2007, 03:39 AM
Post #12


Super Ninja
****

Group: Members
Posts: 385
Joined: 2-December 07
From: Missoula, Montana
Member No.: 3,909



Provide a tutorial?
Your script isnt working for me as well sad.gif
Go to the top of the page 
 
  + Quote Post
nitsuarox
post Dec 13 2007, 01:32 AM
Post #13


Ninja
***

Group: Members
Posts: 270
Joined: 24-October 07
From: My house
Member No.: 1,825



the admin login is

user: admin
password: demo
chmod all the files in the admin directory to 777

and will anyone using this give me a link to there setup please?
Go to the top of the page 
 
  + Quote Post
IamShipon1988
post Dec 13 2007, 03:24 AM
Post #14


Outrageously Uber Ninja
*******

Group: Moderators
Posts: 1,562
Joined: 19-September 07
From: Rochester, NY
Member No.: 86



QUOTE(Alex)
When it comes down to it MySQL stores data in files too, and it handles access levels within the RDBMS. The issue is simply how you protect them, you can do things like placing the data files below the document root or using .htaccess directives to protect a data directory. You can also save them as PHP files and include a die() at the top of the page in such a way that includes from the CMS are not killed, but when people try to view the data file they are.

Well it seems like a really good idea but I looked through the code and it seems that it could be improved. Mainly the main files can be organized a little better with comments that will help users fix up/modify the script to their liking. Secondly, a better README.txt file should be used to help out with the script installation. There are people who are computer/script illiterate.

OH By the way, for anyone who is using this script, go find this line of code on the index.php file and delete it (it should be the first line of code. If you don't, it will distort the layout in IE
CODE
<!-- COPYRIGHT 2005 FREE TEMPLATE BY JACK CATOR - WWW.ZYMIC.COM -->


>> AT THE SCRIPT
I really like your login script. I'm thinking of using it for one of my sites (the login script), is that "okay" with you? I've seen a similar one around and I'm a bit too lazy to code one myself considering the fact that I have whole bunch of other work to do.
Go to the top of the page 
 
  + Quote Post
nitsuarox
post Dec 13 2007, 06:47 PM
Post #15


Ninja
***

Group: Members
Posts: 270
Joined: 24-October 07
From: My house
Member No.: 1,825



you can use it I am licensed in gnu

to protect a page you have to use the require once password_protect.php thing
Go to the top of the page 
 
  + Quote Post
nitsuarox
post Dec 13 2007, 07:24 PM
Post #16


Ninja
***

Group: Members
Posts: 270
Joined: 24-October 07
From: My house
Member No.: 1,825



i just opened the demo
Go to the top of the page 
 
  + Quote Post
nitsuarox
post Dec 20 2007, 09:44 PM
Post #17


Ninja
***

Group: Members
Posts: 270
Joined: 24-October 07
From: My house
Member No.: 1,825



does anyone wanna help me code?
Go to the top of the page 
 
  + Quote Post
XyberForce
post Dec 21 2007, 08:37 PM
Post #18


Super Duper Ninja
*****

Group: Members
Posts: 453
Joined: 20-September 07
From: Houston, TX
Member No.: 290



The Admin CP needs some work. I can help you with setting up the layout for that, also when you click submit, it doesn't automatically redirect.
Go to the top of the page 
 
  + Quote Post
nitsuarox
post Jan 27 2008, 03:46 PM
Post #19


Ninja
***

Group: Members
Posts: 270
Joined: 24-October 07
From: My house
Member No.: 1,825



i am releasing a new version RIGHT now (uploading) this new version has a WYSIWYG editor automatic infinite page generation automatic menu linking and MUCH more
Go to the top of the page 
 
  + Quote Post
P3D1G0
post Jan 30 2008, 05:41 AM
Post #20


Ninja
***

Group: Members
Posts: 162
Joined: 26-October 07
Member No.: 1,917



And it also has a none working Demo too.
Go to the top of the page 
 
  + Quote Post
2 Pages V   1 2 >
 Closed Topic Start new topic
left right
0 Members:
left right
 


Lo-Fi Version Time is now: 23rd May 2013 - 02:58 AM