re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Quote:
Originally Posted by
grimske1
my client doesn't load it stucks at 0% xd how to fix that?
Update your webbuild to 933.
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
I really like, but when I try to enter the client does not work. Why?
Re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS CLIENT FIX INFORMATION
Quote:
Originally Posted by
PremiumEye
Everywhere I look, On hotels using my cms. Works the client fine. I realy don't know. Have you updated the webbuild to 933?
yes i have updated client to 933 webbuild and still client stops at 33% :( but when i put r63 back to RevCMS and try there then client loads 100% but not on your cms there it's stuck at 33%
uh that is so strange i tried now and suddenly the client just worked :/ maybe it was just my web browser chache or something making it get stuck at 33% but now it loaded fine really odd
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Why don't you use an auto webbuild script?
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
when will you do rest of cms translate? since there is lots of non-english texts on cms still :/
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
bobbait.net is using your cms! Good job! I like it too much ;)
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
i edited everything still stucks on 30% i also updated webbuild to 933 ..
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Quote:
Originally Posted by
PremiumEye
Because I'm not going to do everything! People could do also something...
Posted via Mobile Device
I have here an automatic webbuild script.
PHP Code:
public function SetWebBuild()
{
$link = file_get_contents('http://www.habbo.com/community');
$build = explode('<link rel="shortcut icon" href="http://images.habbo.com/habboweb/', $link);
$build = explode('/web-gallery/v2/favicon.ico"', $build[1]);
$build = trim($build[0]);
return $build;
}
But this is not going to work. Because if I include this code in an PHP or SCRIPT tag, I get an error. ;)
Put it in the Core class and then do $core->setwebbuild();
But that is gonna be very slow so you have to cache it.
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Quote:
Originally Posted by
azaidi
Put it in the Core class and then do $core->setwebbuild();
But that is gonna be very slow so you have to cache it.
Yes. I know. Thats the reason why I don't want to place it in the core class.
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
in Public/Styles/Default/Images/
There you find an image called logo.
Tadaaa. done.
Something like that^^
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Quote:
Originally Posted by
PremiumEye
Yes. I know. Thats the reason why I don't want to place it in the core class.
Make a Public $webbuild; in core and then use something like this:
if(empty($this->webbuild)){
..
return $thecodeyougot
} else {
return $this->webbuild;
}
That will only return it once, althought it has to check everytime you refresh the page so it will still be pretty slow.
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Quote:
Originally Posted by
azaidi
Make a Public $webbuild; in core and then use something like this:
if(empty($this->webbuild)){
..
return $thecodeyougot
} else {
return $this->webbuild;
}
That will only return it once, althought it has to check everytime you refresh the page so it will still be pretty slow.
Know I have placed the automatic webbuild script in the client. I'l try it ;)
But people. Should I include vBulletin in homepremiumcms? I don't know :p. It makes the cms much bigger.
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Quote:
Originally Posted by
PremiumEye
Know I have placed the automatic webbuild script in the client. I'l try it ;)
But people. Should I include vBulletin in homepremiumcms? I don't know :p. It makes the cms much bigger.
Just upload it apart and give your users instructions on how to add it
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Your client stucks on 33% because you SWF's are not 100%. I have tried it. And I get this. :)
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Premium, i'm using Google Chrome ^^
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
People, There is coming an new staff panel! With the old style. But with more things! I don't going to tell about it anymore :D.
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
To be honest your just editing PhoenixPHP so Your also doing something wrong also
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Quote:
Originally Posted by
GayPride
To be honest your just editing PhoenixPHP so Your also doing something wrong also
Yea He used it as a base... He did a major edit, and a few bit of recoding, he even added homes all working. So IMO he can rename :/:, Just like Hobba ...
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
Quote:
Originally Posted by
GayPride
To be honest your just editing PhoenixPHP so Your also doing something wrong also
I do nothing wrong ;)? You can't even see it is PhoenixPHP. At least, Thats is what some people say. And I replace all the code. In principle, it is (almost) a completely different cms :)
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
as i can see is that phoenixphp has stoped being developed so it doesent mather if he changes name of it to something else and i have keept the HomePremiumCMS footer on my Hotel because im not one of these people that removes the footer :)
re: [PhoenixPHP][Emu][MySQL 5.5 +] HomePremiumCMS
If you don't want to check for the webbuild the whole time you could do something like
if(!isset($_SESSION['webbuild'])){
define webbuild code
$_SESSION['webbuild'] = $webbuild;
}
return $_SESSION['webbuild'];
__
Just trying to give you ideas :p