Well, hi guys, the last few times i checked up on here, to my sadness i had to see that WAP Communitys almost died, anyways, i have decided to start a new WAP Script, i will attach a few screenshots of what i have so far when it is done i will upload it here for everyone.
New Script i am working on
Collapse
X
-
Originally posted by cgp View Postthat looks exactly like the phoenixbytes code TBH from 10 years ago.
Few features i have in:
IP Ban (useless with proxys vpn etc but people want it)
You can set the minimum age from the owner tools
Script Update Check (can be turned on or off)
Gallery with male and female category
i kept it modular everything is handled by the index.php just drop a new file in the sites folder and add a link to main.php or wherever you desire
PHP Code:foreach ($_SERVER as $server => $value)
{
echo "$server is $value<br />";
}
Comment
-
this looks good man. i take it is based for mobiles over all? im going to be making mine a responsive. atm its best viewed in pc/laptop. but will a little css modding i can make it look great on all 3 by hiding some elements from other browsers.
<?php
include ('Ghost');
if ($Post == true) {
echo '
sigpic
alt='coding-talk.com!!' />';
echo 'Sharing Is Caring!';
} else {
echo '
alt='the username GHOST has been comprimised!' />';
echo 'OMG SOMEBODY HELP ME!!';
}
?>
Comment
-
Originally posted by Ghost View Postthis looks good man. i take it is based for mobiles over all? im going to be making mine a responsive. atm its best viewed in pc/laptop. but will a little css modding i can make it look great on all 3 by hiding some elements from other browsers.
PHP Code:foreach ($_SERVER as $server => $value)
{
echo "$server is $value<br />";
}
Comment
-
ah yeah it will. i just ment by looks. it being pretty minimal would suit mobiles alot.<?php
include ('Ghost');
if ($Post == true) {
echo '
sigpic
alt='coding-talk.com!!' />';
echo 'Sharing Is Caring!';
} else {
echo '
alt='the username GHOST has been comprimised!' />';
echo 'OMG SOMEBODY HELP ME!!';
}
?>
Comment
-
Originally posted by Ghost View Postah yeah it will. i just ment by looks. it being pretty minimal would suit mobiles alot.
PHP Code:foreach ($_SERVER as $server => $value)
{
echo "$server is $value<br />";
}
Comment
-
i always try to think about the network issue. but all i hear off people now is they want color. they want all the things css/html gives. so i stopped all the headaches i was getting from people and just gave in to them lol. also went from flatfile to mysqli which has been a fun experience lol having to mess about with 2 times/timezones mysql server and php server was a headache all of its own trying to get php and mysql to get it exact was a pain. so i ended up just making php and mysql server synch up timezones
PHP Code:/** function that will synchronize php and mysql timezones to user defined
timezone if not set will revert to a default of Europe/London */
function synchronize_php_and_mysql_timezones($config){
$config->timezone = isset($config->timezone) ? $config->timezone : 'Europe/London';
date_default_timezone_set($config->timezone);
$now = new DateTime();
$minutes = $now->getOffset() / 60;
$segment = ($minutes < 0 ? -1 : 1);
$minutes = abs($minutes);
$hours = floor($minutes / 60);
$minutes -= $hours * 60;
$offset = sprintf('%+d:%02d', $hours*$segment, $minutes);
db::mysqli()->query('SET time_zone="'.$offset.'";');
}
PHP Code:synchronize_php_and_mysql_timezones('Europe/London');
if you was to use this though. would have to change $config->timezone to $config though since this is calling my db file also.
and change db::mysqli()->query('SET time_zone="'.$offset.'";'); to mysqli normal call or your ownLast edited by Ghost; 04.03.15, 21:38.<?php
include ('Ghost');
if ($Post == true) {
echo '
sigpic
alt='coding-talk.com!!' />';
echo 'Sharing Is Caring!';
} else {
echo '
alt='the username GHOST has been comprimised!' />';
echo 'OMG SOMEBODY HELP ME!!';
}
?>
Comment
-
Originally posted by Ghost View Posti always try to think about the network issue. but all i hear off people now is they want color. they want all the things css/html gives. so i stopped all the headaches i was getting from people and just gave in to them lol. also went from flatfile to mysqli which has been a fun experience lol having to mess about with 2 times/timezones mysql server and php server was a headache all of its own trying to get php and mysql to get it exact was a pain. so i ended up just making php and mysql server synch up timezones
PHP Code:/** function that will synchronize php and mysql timezones to user defined
timezone if not set will revert to a default of Europe/London */
function synchronize_php_and_mysql_timezones($config){
$config->timezone = isset($config->timezone) ? $config->timezone : 'Europe/London';
date_default_timezone_set($config->timezone);
$now = new DateTime();
$minutes = $now->getOffset() / 60;
$segment = ($minutes < 0 ? -1 : 1);
$minutes = abs($minutes);
$hours = floor($minutes / 60);
$minutes -= $hours * 60;
$offset = sprintf('%+d:%02d', $hours*$segment, $minutes);
db::mysqli()->query('SET time_zone="'.$offset.'";');
}
PHP Code:synchronize_php_and_mysql_timezones('Europe/London');
PHP Code:foreach ($_SERVER as $server => $value)
{
echo "$server is $value<br />";
}
Comment
-
with that solution your also able to move your script to another server and still be able to produce same times etc. so no more messing about getting times to look correct again once moved etc. as sometimes this is a possibility when moving servers due to servers being in diff timezone.<?php
include ('Ghost');
if ($Post == true) {
echo '
sigpic
alt='coding-talk.com!!' />';
echo 'Sharing Is Caring!';
} else {
echo '
alt='the username GHOST has been comprimised!' />';
echo 'OMG SOMEBODY HELP ME!!';
}
?>
Comment
-
Originally posted by arnage View PostLooks cool.
Wap community globally is on bypass, sadly...
I remember a few years back when bunch of people were writing, designing, building or patching something...
Comment
-
Why don't all of us work on an open source community script on GitHub.Mobile chat, iphone chat, android chat, chat, rooms http://www.aiochat.com
Comment
-
well, i would start looking into benchmarks, how often the frameworks are updated and how secure and popular they are: http://systemsarchitect.net/performa...hp-frameworks/
-
own code is cool but there is no way around frameworks, if you are developing scripts for long time you have already collected a bunch of classes and functions which you use in your new scripts (its a kind of your own framework), i'm always ready to learn new things, so using new framework may bring some new experiences for my feature projects, i.e. it could speed up the development time etc.
-
-
Framework is the way to go if multiple people are working on 1 project keeps everything clean and as gum said it is alot quickerCreator ofEpix.Mobi
Keep an Eye on us Big things coming soon!!!!
Need something for your site hit me up here
http://coding-talk.com/forum/main-fo...r-your-wapsite
Comment
Comment